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.
2 parents 0079b59 + 656f1e9 commit 6810bf3Copy full SHA for 6810bf3
1 file changed
.github/workflows/tmp.yml
@@ -0,0 +1,32 @@
1
+name: tmp
2
+
3
+on:
4
+ push:
5
6
+concurrency:
7
+ group: tmp-${{ github.workflow }}-${{ github.ref }}
8
+ cancel-in-progress: true
9
10
+permissions:
11
+ checks: read
12
+ statuses: read
13
+ contents: read
14
15
+jobs:
16
+ build-and-test:
17
+ if: '!cancelled()'
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - name: Checkout code
21
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
22
23
+ - name: Setup Node.js
24
+ uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
25
+ with:
26
+ node-version: '20'
27
28
+ - name: Install dependencies
29
+ run: npm install
30
31
+ - name: Test the action on itself
32
+ uses: ./
0 commit comments