Bump vite from 5.4.3 to 5.4.6 #118
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: lint | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
frontend: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20'] | |
python-version: ['3.12'] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up Node ${{ matrix.node-version }}.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Check if package-lock.json is up to date | |
run: | | |
npx --yes [email protected] | |
- name: Lint frontend code with ESLint | |
run: | | |
curl -sSL https://install.python-poetry.org | python3 - | |
npm ci | |
npm run lint-frontend | |
backend: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20'] | |
python-version: ['3.12'] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up Node ${{ matrix.node-version }}.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Check if package-lock.json is up to date | |
run: | | |
npx --yes [email protected] | |
- name: Lint backend code with Flake8 | |
run: | | |
curl -sSL https://install.python-poetry.org | python3 - | |
npm ci | |
npm run lint-backend |