Skip to content

Commit

Permalink
Test on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
MattiasBuelens committed Apr 5, 2024
1 parent 4bb796a commit a9bf219
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
types: [opened, reopened, synchronize]
paths-ignore:
- '**.md'
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci --workspaces --include-workspace-root
- name: Build
run: npm run build
- name: Test
run: npm test

0 comments on commit a9bf219

Please sign in to comment.