|
6 | 6 | name: Check dist/
|
7 | 7 |
|
8 | 8 | on:
|
9 |
| - push: |
10 |
| - branches: |
11 |
| - - main |
12 |
| - paths-ignore: |
13 |
| - - '**.md' |
14 |
| - pull_request: |
15 |
| - paths-ignore: |
16 |
| - - '**.md' |
17 |
| - workflow_dispatch: |
| 9 | + push: |
| 10 | + branches: |
| 11 | + - main |
| 12 | + paths-ignore: |
| 13 | + - "**.md" |
| 14 | + pull_request: |
| 15 | + paths-ignore: |
| 16 | + - "**.md" |
| 17 | + workflow_dispatch: |
18 | 18 |
|
19 | 19 | jobs:
|
20 |
| - check-dist: |
21 |
| - runs-on: ubuntu-latest |
| 20 | + check-dist: |
| 21 | + runs-on: ubuntu-latest |
22 | 22 |
|
23 |
| - steps: |
24 |
| - - uses: actions/checkout@v4 |
| 23 | + steps: |
| 24 | + - uses: actions/checkout@v4 |
25 | 25 |
|
26 |
| - - name: Set Node.js 16.x |
27 |
| - |
28 |
| - with: |
29 |
| - node-version: 16.x |
| 26 | + - name: Set Node.js 20.x |
| 27 | + |
| 28 | + with: |
| 29 | + node-version: 20.x |
30 | 30 |
|
31 |
| - - name: Install dependencies |
32 |
| - run: npm ci |
| 31 | + - name: Install dependencies |
| 32 | + run: npm ci |
33 | 33 |
|
34 |
| - - name: Rebuild the dist/ directory |
35 |
| - run: | |
36 |
| - npm run package |
| 34 | + - name: Rebuild the dist/ directory |
| 35 | + run: | |
| 36 | + npm run package |
37 | 37 |
|
38 |
| - # @kiwicopple: I've disabled this worklfow for now, as it's not working as expected. It will still output an error. |
39 |
| - # - name: Compare the expected and actual dist/ directories |
40 |
| - # run: | |
41 |
| - # if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then |
42 |
| - # echo "Detected uncommitted changes after build. See status below:" |
43 |
| - # git diff |
44 |
| - # exit 1 |
45 |
| - # fi |
46 |
| - # id: diff |
47 |
| - # |
48 |
| - # # If index.js was different than expected, upload the expected version as an artifact |
49 |
| - # - uses: actions/upload-artifact@v3 |
50 |
| - # if: ${{ failure() && steps.diff.conclusion == 'failure' }} |
51 |
| - # with: |
52 |
| - # name: dist |
53 |
| - # path: dist/ |
| 38 | + # @kiwicopple: I've disabled this worklfow for now, as it's not working as expected. It will still output an error. |
| 39 | + # - name: Compare the expected and actual dist/ directories |
| 40 | + # run: | |
| 41 | + # if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then |
| 42 | + # echo "Detected uncommitted changes after build. See status below:" |
| 43 | + # git diff |
| 44 | + # exit 1 |
| 45 | + # fi |
| 46 | + # id: diff |
| 47 | + # |
| 48 | + # # If index.js was different than expected, upload the expected version as an artifact |
| 49 | + # - uses: actions/upload-artifact@v3 |
| 50 | + # if: ${{ failure() && steps.diff.conclusion == 'failure' }} |
| 51 | + # with: |
| 52 | + # name: dist |
| 53 | + # path: dist/ |
0 commit comments