Skip to content

Fix cache method bug #10

Fix cache method bug

Fix cache method bug #10

Workflow file for this run

name: Lint, build and run tests
on:
push:
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Packages
run: yarn
- name: Run linter
run: yarn lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Packages
run: yarn
- name: Test
run: yarn test
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Packages
run: yarn
- name: Build
run: yarn build