We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 319e48b commit 67eefe5Copy full SHA for 67eefe5
.github/workflows/build.yml
@@ -0,0 +1,26 @@
1
+name: build
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - uses: actions/setup-node@v4
11
+ with:
12
+ node-version: 20
13
+ cache: yarn
14
+ - run: yarn install --frozen-lockfile
15
+ - run: yarn build
16
+ - uses: tj-actions/verify-changed-files@v16
17
+ id: changed-files
18
19
+ fail-if-changed: true
20
+ - name: List changed files
21
+ if: always()
22
+ env:
23
+ FILES_CHANGED: |-
24
+ ${{ steps.changed-files.outputs.changed_files }}
25
+ run: |
26
+ echo "Changed files: $FILES_CHANGED"
0 commit comments