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 a98238a commit 7158c5dCopy full SHA for 7158c5d
.github/workflows/versioning.yml
@@ -4,24 +4,21 @@ name: Semantic versioning
4
5
on:
6
push:
7
- branches: [ "dev" ]
+ branches: ['dev']
8
9
jobs:
10
build:
11
-
12
runs-on: ubuntu-latest
13
14
strategy:
15
matrix:
16
node-version: [20.x, 22.x]
17
18
19
steps:
20
- - uses: actions/checkout@v4
21
- - name: Use Node.js ${{ matrix.node-version }}
22
- uses: actions/setup-node@v4
23
- with:
24
- node-version: ${{ matrix.node-version }}
25
- cache: 'npm'
26
- - run: npm ci
27
- - run: npm test
+ - uses: actions/checkout@v4
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v4
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: 'npm'
+ - run: npm ci
0 commit comments