-
Notifications
You must be signed in to change notification settings - Fork 183
51 lines (50 loc) · 1.41 KB
/
action-ci.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: Github Action CI
on:
push:
paths:
- 'action/**'
- 'action.yml'
pull_request:
paths:
- 'action/**'
- 'action.yml'
jobs:
run-unit-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./action
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: '20'
- run: npm install
- run: npm run lint
- run: npm run format:check
- run: npm run test
- run: npm run package
# This will fail the workflow if the `dist/` directory is different than
# expected.
- name: Compare Directories
id: diff
run: |
if [ ! -d dist/ ]; then
echo "Expected dist/ directory does not exist. See status below:"
ls -la ./
exit 1
fi
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff --ignore-space-at-eol --text dist/
exit 1
fi
# If `dist/` was different than expected, upload the expected version as a
# workflow artifact.
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
name: Upload Artifact
id: upload
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/