Bump vite from 2.9.17 to 2.9.18 in /examples/stickynotes-to-shapes #995
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: Code Quality | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Read .nvmrc | |
run: echo ::set-output name=NVMRC::$(cat .nvmrc) | |
id: nvm | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "${{ steps.nvm.outputs.NVMRC }}" | |
- name: Install dependencies | |
run: yarn | |
- name: Run ESLint | |
run: yarn run lint | |
- name: Check format | |
run: yarn prettier --check ./examples | |
- name: Check build | |
run: yarn run build | |
- name: Check python code | |
uses: psf/black@stable | |
with: | |
src: "./examples" |