-
Notifications
You must be signed in to change notification settings - Fork 196
51 lines (49 loc) · 1.31 KB
/
action-ci.yml
File metadata and controls
51 lines (49 loc) · 1.31 KB
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"
permissions:
contents: read
jobs:
run-unit-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./action
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4.0.2
with:
node-version: "20"
- run: npm install
- run: npm run lint
- run: npm run format:check
- run: npm run test
- run: npm run package
- name: Compare Directories
if: github.actor != 'dependabot'
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: ${{ failure() && steps.diff.outcome == 'failure' && github.actor != 'dependabot' }}
name: Upload Artifact
id: upload
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/