Merge pull request #134 from SwitchDreams/upgrade-dependencies #491
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
cache: 'yarn' | |
- name: Install modules | |
run: yarn | |
- name: Run ESLint | |
run: yarn lint | |
- name: Run Type script | |
run: yarn tsc | |
- name: Run Tests | |
run: yarn vitest |