Skip to content

ci: cached dependencies to speed up GitHub workflows. #61

ci: cached dependencies to speed up GitHub workflows.

ci: cached dependencies to speed up GitHub workflows. #61

Workflow file for this run

name: Lint files
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Lint files
run: yarn lint