Skip to content

Bump eslint from 8.49.0 to 8.50.0 #199

Bump eslint from 8.49.0 to 8.50.0

Bump eslint from 8.49.0 to 8.50.0 #199

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9' # nevrast.backscattering.de
cache: pipenv
- run: pip install pipenv
- run: pipenv install --dev
- run: pipenv run pip install tomli # Workaround for mypy failing in CI
- run: pipenv run check
client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.12.1' # nevrast.backscattering.de
cache: npm
- run: npm ci
- run: npm run lint