Skip to content

Commit

Permalink
chore: Split out lint and declaration jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed Dec 8, 2020
1 parent f85ab26 commit e54f85d
Showing 1 changed file with 27 additions and 7 deletions.
34 changes: 27 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,30 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install --no-package-lock
- name: Run All Validations
if: ${{ matrix.node-version == '14.x' }}
run: npm run test-ci
- name: Run Tests Only
if: ${{ matrix.node-version != '14.x' }}
run: npm run test
run: npm install
- name: Run tests and coverage
run: npm run test-cover

lint:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
- name: Install Dependencies
run: npm install
- name: Lint
run: npm run lint

declaration:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: npm install
- name: Run Typescript Validations
run: npm run test-declaration

0 comments on commit e54f85d

Please sign in to comment.