Skip to content

chore(deps): bump the eslint group across 1 directory with 3 updates #86

chore(deps): bump the eslint group across 1 directory with 3 updates

chore(deps): bump the eslint group across 1 directory with 3 updates #86

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install Deps
run: yarn install --immutable
- name: Test
run: yarn test
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install Deps
run: yarn install --immutable
- name: Build
run: yarn build
lint:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install Deps
run: yarn install --immutable
- name: Build
run: yarn build
- name: Lint
run: yarn lint