Skip to content

Commit

Permalink
Run tests on push using GitHub Actions
Browse files Browse the repository at this point in the history
This adds a basic CI pipeline to the repository which runs tests on
all branch pushes.
  • Loading branch information
hughsk-canva authored and toji committed Jan 14, 2025
1 parent dd068e3 commit 7ac2b5d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Push
on:
push:
branches: "*"

jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm ci
- run: npm test

0 comments on commit 7ac2b5d

Please sign in to comment.