-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from getjackd/09-11-Moving_from_CircleCI_to_Gi…
…tHub_Actions Moving from CircleCI to GitHub Actions
- Loading branch information
Showing
4 changed files
with
254 additions
and
242 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,3 +78,7 @@ typings/ | |
|
||
# DynamoDB Local files | ||
.dynamodb/ | ||
|
||
.env.local | ||
audit | ||
tmp |
Oops, something went wrong.