Skip to content

Prepare v23.0.0-rc.4 release #86

Prepare v23.0.0-rc.4 release

Prepare v23.0.0-rc.4 release #86

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, and lint the source code and tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: lint
on:
push:
branches: ['*']
pull_request:
branches: ['*']
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint project
run: pnpm lint