Skip to content

Commit 1cadc41

Browse files
authored
Merge pull request #36 from getjackd/09-11-Moving_from_CircleCI_to_GitHub_Actions
Moving from CircleCI to GitHub Actions
2 parents dd02660 + 89cd56a commit 1cadc41

File tree

4 files changed

+254
-242
lines changed

4 files changed

+254
-242
lines changed

.circleci/config.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Tests
2+
on:
3+
push:
4+
5+
6+
jobs:
7+
test:
8+
concurrency:
9+
group: test-${{ github.ref }}
10+
cancel-in-progress: true
11+
runs-on: ubuntu-latest
12+
services:
13+
beanstalkd:
14+
image: schickling/beanstalkd
15+
ports:
16+
- 11300:11300
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- uses: pnpm/action-setup@v2
21+
with:
22+
version: 8.7.1
23+
24+
- uses: actions/setup-node@v3
25+
with:
26+
node-version: 18.12.1
27+
cache: "pnpm"
28+
29+
- run: pnpm i
30+
- run: pnpm test

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,7 @@ typings/
7878

7979
# DynamoDB Local files
8080
.dynamodb/
81+
82+
.env.local
83+
audit
84+
tmp

0 commit comments

Comments
 (0)