We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acd4238 commit 6f229a1Copy full SHA for 6f229a1
templates/plugin/.github/workflows/ci.yml
@@ -1,16 +1,22 @@
1
name: CI workflow
2
on: [push, pull_request]
3
+permissions:
4
+ contents: read
5
jobs:
6
test:
7
runs-on: ${{ matrix.os }}
8
+ permissions:
9
10
strategy:
11
matrix:
- node-version: [10.x, 12.x, 14.x]
- os: [ubuntu-latest, windows-latest]
12
+ node-version: [20.x, 22.x]
13
+ os: [macos-latest, ubuntu-latest, windows-latest]
14
steps:
- - uses: actions/checkout@v2
15
+ - uses: actions/checkout@v4
16
+ with:
17
+ persist-credentials: false
18
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
19
+ uses: actions/setup-node@v4
20
with:
21
check-latest: true
22
node-version: ${{ matrix.node-version }}
0 commit comments