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 816f028 commit 7b49f5bCopy full SHA for 7b49f5b
.github/workflows/ci.yml
@@ -8,16 +8,22 @@ on:
8
9
jobs:
10
test-lint-build:
11
+ permissions:
12
+ contents: read
13
+ packages: read
14
+
15
runs-on: ubuntu-latest
16
17
steps:
18
- name: Checkout code
- uses: actions/checkout@v4
19
+ uses: actions/checkout@v5
20
21
- name: Setup Node.js LTS
22
uses: actions/setup-node@v4
23
with:
24
node-version: 'lts/*'
25
+ env:
26
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27
28
- name: Setup pnpm
29
uses: pnpm/action-setup@v4
@@ -26,6 +32,8 @@ jobs:
32
shell: bash
33
run: |
34
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
35
36
37
30
38
- name: Setup pnpm cache
31
39
uses: actions/cache@v4
0 commit comments