Update all patch and minor versions #223
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: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Npm install | |
run: npm install | |
- name: Prettier | |
run: npm run prettier:check | |
- name: Lint | |
run: npm run lint | |
- name: Type check | |
run: npm run typecheck | |
- name: Build | |
run: npm run build | |
- name: Build demo | |
run: npm run build-demo |