Skip to content

fix: fix loading state not showing up #148

fix: fix loading state not showing up

fix: fix loading state not showing up #148

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main, staging]
jobs:
lint:
strategy:
fail-fast: false
matrix:
node-version: [20.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
# Runs the installations sequentially because GitHub Actions cannot handle the load of parallelism
run: yarn install
- name: Lint files
run: yarn lint