We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35dcf4c commit e6707baCopy full SHA for e6707ba
1 file changed
.github/workflows/test.yml
@@ -6,9 +6,21 @@ on:
6
- main
7
- 'releases/*'
8
9
+concurrency:
10
+ group: build-and-test-${{ github.ref_name }}
11
+ cancel-in-progress: true
12
+
13
+permissions: {}
14
15
jobs:
- build-action: # make sure build/ci work properly
- runs-on: ubuntu-latest
16
+ build-action:
17
+ runs-on: ubuntu-22.04
18
+ timeout-minutes: 10
19
20
+ permissions:
21
+ contents: read
22
+ packages: read
23
24
steps:
25
- name: Checkout repo
26
uses: actions/checkout@v4
@@ -34,7 +46,13 @@ jobs:
34
46
pnpm run test
35
47
36
48
test-action: # make sure the action works on a clean machine without building
37
49
50
51
52
53
54
55
38
56
39
57
40
58
0 commit comments