Removes Typedoc #582
Workflow file for this run
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: | |
branches: ["*"] | |
pull_request: | |
branches: ["*"] | |
jobs: | |
vitest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: false | |
- name: Checkout LFS | |
run: git lfs pull | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: "project/.nvmrc" | |
cache: "npm" | |
cache-dependency-path: "project/package.json" | |
- name: Check NPM Cache | |
id: cache-check | |
uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('./project/package.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install NPM Dependencies | |
if: steps.cache-check.outputs.cache-hit != 'true' | |
run: npm install | |
working-directory: ./project | |
- name: Run Tests | |
run: npm run test | |
working-directory: ./project |