Skip to content

Commit

Permalink
Merge pull request #36 from getjackd/09-11-Moving_from_CircleCI_to_Gi…
Browse files Browse the repository at this point in the history
…tHub_Actions

Moving from CircleCI to GitHub Actions
  • Loading branch information
divmgl authored Sep 11, 2023
2 parents dd02660 + 89cd56a commit 1cadc41
Show file tree
Hide file tree
Showing 4 changed files with 254 additions and 242 deletions.
36 changes: 0 additions & 36 deletions .circleci/config.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Tests
on:
push:


jobs:
test:
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
runs-on: ubuntu-latest
services:
beanstalkd:
image: schickling/beanstalkd
ports:
- 11300:11300
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v2
with:
version: 8.7.1

- uses: actions/setup-node@v3
with:
node-version: 18.12.1
cache: "pnpm"

- run: pnpm i
- run: pnpm test
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,7 @@ typings/

# DynamoDB Local files
.dynamodb/

.env.local
audit
tmp
Loading

0 comments on commit 1cadc41

Please sign in to comment.