Skip to content

Use header_image and fine-tune cards #72

Use header_image and fine-tune cards

Use header_image and fine-tune cards #72

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Cache dependencies
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run unit tests
run: yarn test
- name: Run type checks (TypeScript)
run: yarn tsc
- name: Run linter (ESLint)
run: yarn lint