Skip to content

Switch back to ubuntu-latest and run corepack install #7

Switch back to ubuntu-latest and run corepack install

Switch back to ubuntu-latest and run corepack install #7

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: corepack enable
- run: corepack install
- run: npm ci
- run: npx eslint .
- run: npx prettier --check .