Skip to content

Update README.md

Update README.md #23

Workflow file for this run

name: CI
on:
- push
concurrency:
group: check
cancel-in-progress: true
jobs:
check:
name: Lint app and run tests
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile --production=false
- name: Turbo Cache
uses: actions/cache@v3
with:
path: .turbo
key: turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }}
restore-keys: |
turbo-${{ github.job }}-${{ github.ref_name }}-
- name: Lint files
run: yarn lint
- name: Test files
run: yarn lint
- name: Build files
run: yarn build