-
Notifications
You must be signed in to change notification settings - Fork 69
46 lines (43 loc) · 1.04 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
name: Test
on:
pull_request:
types: [ opened, synchronize, reopened ]
branches:
- master
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm ci
- run: npm run lint
- run: npm test
- uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage/cobertura-coverage.xml
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Validate build
shell: bash
run: |
set -e
npm ci
git add -A
npm run package
if [ -n "$(git status --porcelain -- dist)" ]; then
echo "::error::Build result differs. Run 'npm run package' then commit and push any changes"
git status --porcelain -- dist
exit 1
fi