We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ce99b2 commit 05c7dc3Copy full SHA for 05c7dc3
1 file changed
.github/workflows/execution-flow.yml
@@ -3,20 +3,12 @@ on: push
3
jobs:
4
build:
5
continue-on-error: true
6
- strategy:
7
- matrix:
8
- node-version: [12,13,14]
9
- os: [ubuntu-latest,windows-latest]
10
- exclude:
11
- - os: windows-latest
12
- runs-on: ${{ matrix.os }}
+ runs-on: ubuntu-latest
13
steps:
14
- name: checkout
15
uses: actions/checkout@v4
16
- name: install nodejs
17
uses: actions/setup-node@v3
18
- with:
19
- node-version: ${{ matrix.node-version }}
20
- name: install dependencies
21
run : |
22
npm ci
0 commit comments