Skip to content

Commit

Permalink
ci(actions): disabled linting step on node 8 as prettier v2 incompat
Browse files Browse the repository at this point in the history
Disabled linting step on environments running with node 8 as prettier >v2 is not compatible anymore
with node 8.

ci(actions): disabled linting step on node 8 as prettier v2 incompat

Disabled linting step on environments running with node 8 as prettier >v2 is not compatible anymore
with node 8.

ci(actions): disabled linting step on node 8 as prettier v2 incompat

Disabled linting step on environments running with node 8 as prettier >v2 is not compatible anymore
with node 8.

ci(actions): disabled linting step on node 8 as prettier v2 incompat

Disabled linting step on environments running with node 8 as prettier >v2 is not compatible anymore
with node 8.

ci(actions): disabled linting step on node 8 as prettier v2 incompat

Disabled linting step on environments running with node 8 as prettier >v2 is not compatible anymore
with node 8.

ci(actions): disabled linting step on node 8 as prettier v2 incompat

Disabled linting step on environments running with node 8 as prettier >v2 is not compatible anymore
with node 8.
  • Loading branch information
onderceylan committed May 15, 2020
1 parent 0dea81a commit 6871aad
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
timeout-minutes: 30

strategy:
fail-fast: false
fail-fast: true
matrix:
node: [8, 10, 12]
os: [ubuntu-latest, macOS-latest, windows-latest]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Use node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
Expand All @@ -24,6 +24,8 @@ jobs:
- name: install
run: npm install
- name: lint
# Prettier runs are disabled on node 8 as prettier >v2 doesn't support this env
if: matrix.node != 8
run: npm run lint
- name: build
run: npm run build
Expand Down

0 comments on commit 6871aad

Please sign in to comment.