-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (34 loc) · 923 Bytes
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: CI
on:
- push
- pull_request
- workflow_dispatch
jobs:
ci:
name: CI
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Install dependencies
run: npm ci
- name: Build
run: npm run all
- name: Compare the expected and actual dist/ directories
id: diff
run: git diff --exit-code -- dist/
# If dist/ was different than expected, upload the expected version as an artifact
- name: Capture dist/ diff
uses: actions/upload-artifact@v3
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
with:
name: dist
path: dist/
- name: Update rolling release tag
if: ${{ github.ref == 'refs/heads/main' }}
run: |
git push origin HEAD:refs/tags/v0.2 --force