chore(*): remove built-in tsyringe symbols and rule caches #2
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: Run Tests | |
on: [push, pull_request] | |
jobs: | |
runtests: | |
name: runtests | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install node21 runtime | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 21 | |
- name: Install dependencies | |
run: rm -rf node_modules && yarn install --frozen-lockfile | |
- name: Run ESLint | |
run: yarn lint | |
- name: Build project | |
run: yarn build | |
- name: Run tets | |
run: yarn test |