Skip to content

Commit c232b5a

Browse files
committed
Simplify workflows
1 parent 963569a commit c232b5a

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,8 @@ name: Node CI
33
on: push
44
jobs:
55
build:
6-
runs-on: ${{ matrix.os }}
7-
8-
strategy:
9-
fail-fast: false
10-
matrix:
11-
os: [ubuntu-latest, windows-latest, macos-latest]
12-
6+
runs-on: ubuntu-latest
137
steps:
14-
- name: Set git to not change EoL
15-
run: |
16-
git config --global core.autocrlf false
178
- uses: actions/checkout@v2
189
- name: Use Node.js 12.x
1910
uses: actions/setup-node@v1
@@ -22,7 +13,6 @@ jobs:
2213
- name: npm install, build, and test
2314
run: |
2415
npm install
25-
npm run build --if-present
2616
npm test
2717
env:
2818
CI: true

0 commit comments

Comments
 (0)