Skip to content

Mostly finish current design #53

Mostly finish current design

Mostly finish current design #53

Workflow file for this run

name: lint
on:
push:
branches:
- main
pull_request:
branches:
- main
- develop
env:
NODE_OPTIONS: --max-old-space-size=8192
jobs:
lint:
name: Run linter for Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18, lts/*, latest]
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v3
- name: Setup node env πŸ—
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: "yarn"
- name: Install dependencies β€πŸ’»
run: yarn install --immutable --inline-builds
- name: Copy .env.example to .env
run: cp .env.example .env
- name: Run linter πŸ‘€
run: yarn lint