Skip to content

Commit

Permalink
Add CI step
Browse files Browse the repository at this point in the history
  • Loading branch information
jocmp committed Dec 1, 2024
1 parent e470765 commit fc6da7f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on: push

jobs:
test-node:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: 'yarn'
node-version-file: '.node-version'
- run: yarn test:node

test-web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: 'yarn'
node-version-file: '.node-version'
- run: yarn test:web


0 comments on commit fc6da7f

Please sign in to comment.