chore: rebase upstream + Altair 1034 #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Frontend test | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
frontend-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛎 Checkout | |
uses: actions/checkout@v4 | |
- name: 🔧 Install yarn | |
run: npm install -g yarn prettier | |
- name: Get yarn cache path | |
id: yarn-cache-dir-path | |
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT | |
- name: ⚡ NPM Cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} | |
- name: 🔧 Install dependencies | |
run: yarn | |
- name: Check lint | |
run: | | |
yarn cache clean | |
yarn lint --max-warnings=0 | |
prettier --check "src/**/*.(tsx|ts)" | |
- name: Pretend we have chains.json and run tests | |
run: cp public/test-file.json src/chains.json && yarn test |