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 963569a commit c232b5aCopy full SHA for c232b5a
.github/workflows/nodejs.yml
@@ -3,17 +3,8 @@ name: Node CI
3
on: push
4
jobs:
5
build:
6
- runs-on: ${{ matrix.os }}
7
-
8
- strategy:
9
- fail-fast: false
10
- matrix:
11
- os: [ubuntu-latest, windows-latest, macos-latest]
12
+ runs-on: ubuntu-latest
13
steps:
14
- - name: Set git to not change EoL
15
- run: |
16
- git config --global core.autocrlf false
17
- uses: actions/checkout@v2
18
- name: Use Node.js 12.x
19
uses: actions/setup-node@v1
@@ -22,7 +13,6 @@ jobs:
22
- name: npm install, build, and test
23
run: |
24
npm install
25
- npm run build --if-present
26
npm test
27
env:
28
CI: true
0 commit comments