We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e099d0c commit ebf9529Copy full SHA for ebf9529
1 file changed
.github/workflows/tests.yaml
@@ -7,11 +7,25 @@ jobs:
7
runs-on: ubuntu-latest
8
strategy:
9
matrix:
10
- node: ['22', '24']
+ node: ['20', '22', '24']
11
name: Node ${{ matrix.node }}
12
13
steps:
14
- - uses: actions/checkout@v4
15
- - run: yarn install --frozen-lockfile
16
- - run: yarn lint
17
- - run: yarn test
+ - name: Checkout code
+ uses: actions/checkout@v4
+ with:
+ persist-credentials: false
18
+
19
+ - name: Setup Node.js version
20
+ uses: actions/setup-node@v4
21
22
+ node-version: ${{ matrix.node }}
23
24
+ - name: Install dependencies
25
+ run: yarn install --frozen-lockfile
26
27
+ - name: Run lint
28
+ run: yarn lint
29
30
+ - name: Run tests
31
+ run: yarn test
0 commit comments