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 21189df commit 6b21ce7Copy full SHA for 6b21ce7
.github/workflows/nodejs.yml
@@ -5,19 +5,23 @@ name: Node.js CI
5
6
on:
7
push:
8
- branches: [main]
+ branches: [dev]
9
pull_request:
10
11
12
jobs:
13
build:
14
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
15
16
strategy:
17
matrix:
18
- node-version: [10.x, 12.x, 14.x]
+ node-version: [12.x, 14.x, 16.x]
19
+ os: [ubuntu-latest, windows-latest]
20
21
steps:
22
+ - name: windows git setup
23
+ if: runner.os == 'Windows'
24
+ run: git config --global core.autocrlf false
25
- uses: actions/checkout@v2
26
- name: Use Node.js ${{ matrix.node-version }}
27
uses: actions/setup-node@v1
0 commit comments