Skip to content

Commit

Permalink
Add CI on the boilerplate itself (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesdemers authored Oct 5, 2023
1 parent 42cb1c0 commit 7f56c9e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

defaults:
run:
working-directory: ./template

on: [push, pull_request]

jobs:
ci:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

- run: make ci-dependencies
- run: make check-all
- run: make ci-test
2 changes: 1 addition & 1 deletion template/.github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ jobs:
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

- run: make ci-dependencies

- run: make check-all
- run: make ci-test

0 comments on commit 7f56c9e

Please sign in to comment.