Bump quasar from 2.16.4 to 2.16.7 #868
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: check yarn install & build | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
packages: | |
name: check yarn install | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
- run: corepack enable | |
- run: yarn install | |
lint: | |
name: run lint | |
runs-on: ubuntu-latest | |
needs: [packages] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
- run: corepack enable | |
- run: yarn install | |
- name: run lint | |
run: yarn lint --no-fix --max-warnings=0 | |
build: | |
name: run build | |
runs-on: ubuntu-latest | |
needs: [packages] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
- run: corepack enable | |
- run: yarn install | |
- run: yarn build |