Skip to content
Snippets Groups Projects
Unverified Commit 214de033 authored by tamaina's avatar tamaina Committed by GitHub
Browse files

GitHub Actions Test PR: Cache on Lint (#9289)

* update lint.yml

* wip

* fix

* fix

* continue-on-error: true
parent d9541a7d
No related branches found
No related tags found
No related merge requests found
......@@ -8,14 +8,30 @@ on:
pull_request:
jobs:
yarn_install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true
- uses: actions/setup-node@v3.2.0
with:
node-version: 18.x
cache: 'yarn'
- run: corepack enable
- run: yarn install --immutable
lint:
needs: [yarn_install]
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
workspace:
- backend
- client
- sw
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment