Skip to content

chore(*): remove built-in tsyringe symbols and rule caches #2

chore(*): remove built-in tsyringe symbols and rule caches

chore(*): remove built-in tsyringe symbols and rule caches #2

Workflow file for this run

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