Skip to content

Commit

Permalink
fix: Add types (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
baseplate-admin authored Aug 5, 2023
1 parent c5c4a87 commit 46cbc5d
Show file tree
Hide file tree
Showing 5 changed files with 406 additions and 3 deletions.
16 changes: 15 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,22 @@ jobs:
- name: Build 🗜️
run: npm run build

TestTypes:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Install Node
uses: dcodeIO/setup-node-nvm@master
with:
node-version: 'lts/*'
- name: Install Dependencies
run: npm ci
- name: Run Tests 👩🏽‍💻
run: npm run test:types

Release:
needs: [Test, Coverage, Lint, Build]
needs: [Test, Coverage, Lint, Build, TestTypes]
if: |
github.ref == 'refs/heads/main' &&
github.event.repository.fork == false
Expand Down
Loading

0 comments on commit 46cbc5d

Please sign in to comment.