Skip to content

Commit

Permalink
chore: break pr.yml into more steps (#4550)
Browse files Browse the repository at this point in the history
  • Loading branch information
fekete965 authored Nov 24, 2022
1 parent 998aff4 commit 876b6c1
Showing 1 changed file with 18 additions and 7 deletions.
25 changes: 18 additions & 7 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,24 @@ jobs:
strategy:
matrix:
node: [16]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- name: Checkout
uses: actions/checkout@v2

- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: |
npm install --legacy-peer-deps
npm run build
npm run typecheck
npm run test

- name: Install Dependencies
run: npm install --legacy-peer-deps

- name: Build the Project
run: npm run build

- name: Running Typechecks
run: npm run typecheck

- name: Running Tests
run: npm run test

0 comments on commit 876b6c1

Please sign in to comment.