Skip to content

fix resources

fix resources #2027

Workflow file for this run

name: 🚨 Lint
on:
push:
branches: ["**"]
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.ref }}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: "yarn"
node-version-file: ".nvmrc"
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.11.3
- name: Install Dependencies
run: |
pip install poetry
yarn --immutable
cd api
poetry install
cd ../libs/indice_pollution
poetry install
- name: Lint
run: yarn lint