Skip to content

Bump @eslint/js from 9.17.0 to 9.18.0 (#14) #64

Bump @eslint/js from 9.17.0 to 9.18.0 (#14)

Bump @eslint/js from 9.17.0 to 9.18.0 (#14) #64

Workflow file for this run

name: Build
on:
push:
env:
NODE_VERSION: 21
PNPM_VERSION: 9
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/[email protected]
- name: Setup PNPM
uses: pnpm/[email protected]
with:
version: ${{ env.PNPM_VERSION }}
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/[email protected]
- name: Setup PNPM
uses: pnpm/[email protected]
with:
version: ${{ env.PNPM_VERSION }}
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint