Skip to content

Commit 7ac2b5d

Browse files
hughsk-canvatoji
authored andcommitted
Run tests on push using GitHub Actions
This adds a basic CI pipeline to the repository which runs tests on all branch pushes.
1 parent dd068e3 commit 7ac2b5d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/push.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Push
2+
on:
3+
push:
4+
branches: "*"
5+
6+
jobs:
7+
tests:
8+
name: Tests
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
13+
with:
14+
node-version: 18
15+
- run: npm ci
16+
- run: npm test

0 commit comments

Comments
 (0)