Skip to content

Commit

Permalink
fix(actions): cI was broken, also added test types
Browse files Browse the repository at this point in the history
  • Loading branch information
rolljee committed Aug 9, 2023
1 parent 4b617c2 commit 86b1019
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/lint/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ runs:
- name: Install deps
shell: bash
run: |
npm run docker npm ci
npm run docker npm run build
npm run docker npm run lint
npm ci
npm run build
npm run test:lint
13 changes: 13 additions & 0 deletions .github/workflows/pull_request.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,16 @@ jobs:
${{ runner.os }}-build-
${{ runner.os }}-
- uses: ./.github/actions/lint

check-types:
name: Check types
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm ci
- name: Run types tests
run: npm run test:types

0 comments on commit 86b1019

Please sign in to comment.