Skip to content

build: move to pnpm #608

build: move to pnpm

build: move to pnpm #608

Workflow file for this run

name: Linting
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: pnpm i
env:
CI: true
- name: Run linter
run: pnpm lint