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 e818ac8 commit 5ede52bCopy full SHA for 5ede52b
1 file changed
.github/workflows/ci.yml
@@ -8,13 +8,20 @@ on:
8
branches:
9
- main
10
11
+# This allows a subsequently queued workflow run to interrupt previous runs
12
+concurrency:
13
+ group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
14
+ cancel-in-progress: true
15
+
16
jobs:
17
test:
18
runs-on: ubuntu-latest
19
permissions:
20
contents: read
21
steps:
22
- uses: actions/checkout@v3
23
+ with:
24
+ persist-credentials: false
25
26
- name: Use Node.js
27
uses: actions/setup-node@v3
@@ -29,7 +36,7 @@ jobs:
29
36
run_install: true
30
37
31
38
- name: Install dependencies
32
- run: pnpm install
39
+ run: pnpm install --ignore-scripts
33
40
34
41
- name: Linter
35
42
run: pnpm run format:ci
0 commit comments