Merge pull request #144 from SwitchDreams/SW-6891-fix-select-component #511
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 |