-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (42 loc) · 1.23 KB
/
main.yml
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
43
44
45
46
47
48
49
50
51
name: Main workflow
on: [push, pull_request]
jobs:
run:
name: Run
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install
run: npm install
- name: Lint
run: npm run format-check
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Upload coverage
uses: ArtiomTr/[email protected]
continue-on-error: true
with:
test-script: npm test
- name: Check build status
run: git diff --exit-code --quiet && echo "No changes were found :)" || { git --no-pager diff; echo -e "Changes found after build.\nPlease run \"npm run build\" and commit the changes in the dist directory."; exit 1; }
release:
needs: run
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Release
uses: ncipollo/release-action@v1
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/v')
with:
allowUpdates: true