Skip to content

Commit

Permalink
check in ci that yarn build generated files are included/updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ailisp committed Sep 14, 2022
1 parent 91dec29 commit f278033
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build
on: push
jobs:
unit-tests:
strategy:
matrix:
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
- name: Install modules
run: yarn
- name: Run build
run: yarn build
- name: check build is included in branch
run: test -z "$(git status --porcelain)"

0 comments on commit f278033

Please sign in to comment.