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 c4d17ce commit 5b13688Copy full SHA for 5b13688
.github/workflows/test.yml
@@ -4,14 +4,18 @@ jobs:
4
test:
5
name: "Test on Node.js ${{ matrix.node-version }}"
6
runs-on: ubuntu-latest
7
+ permissions:
8
+ contents: read
9
strategy:
10
matrix:
11
node-version: [ 16, 18 ]
12
steps:
13
- name: checkout
- uses: actions/checkout@v2
14
+ uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
15
+ with:
16
+ persist-credentials: false
17
- name: setup Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v2
18
+ uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2
19
with:
20
node-version: ${{ matrix.node-version }}
21
- name: Install
0 commit comments