Skip to content

Merge pull request #305 from BarthPaleologue/227-improve-spaceship-au… #1023

Merge pull request #305 from BarthPaleologue/227-improve-spaceship-au…

Merge pull request #305 from BarthPaleologue/227-improve-spaceship-au… #1023

Workflow file for this run

name: ESLint Check
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
eslint:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm run lint:check