This repository has been archived by the owner on Apr 3, 2024. It is now read-only.
Deps: Update dependency chai to v5. #63
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit & Integration Tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
tests: | |
name: 🧪 Tests | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 📦 Install | |
uses: ./.github/common/install | |
- name: 🔨 Build | |
run: pnpm run build | |
- name: 🧪 Test | |
run: pnpm run test | |