Skip to content

Commit

Permalink
[test] separate tests and linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Feb 11, 2021
1 parent 6d0fc3e commit ce4b116
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jobs:
fail-fast: false
matrix:
node-version: [10.x, 12.x, 14.x]
script:
- 'test'
platform:
- os: ubuntu-latest
shell: bash
Expand All @@ -17,6 +19,10 @@ jobs:
shell: bash
- os: windows-latest
shell: powershell
include:
- os: ubuntu-latest
shell: bash
script: 'posttest'

runs-on: ${{ matrix.platform.os }}
defaults:
Expand All @@ -42,7 +48,7 @@ jobs:
# Run the tests, but not if we're just gonna do coveralls later anyway
- name: Run Tap tests
if: matrix.platform.os != 'ubuntu-latest' || matrix.node-version != '12.x'
run: node . test -- -t600 -Rbase -c
run: node . ${{ matrix.script }} --ignore-=scripts -- -t600 -Rbase -c
env:
DEPLOY_VERSION: testing

Expand Down

0 comments on commit ce4b116

Please sign in to comment.