Skip to content

10 adjust GitHub workflows #12

10 adjust GitHub workflows

10 adjust GitHub workflows #12

Workflow file for this run

name: check
on:
pull_request:
branches: [ '*' ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run linters
run: yarn run lint