Skip to content

chore(deps): update node.js to v18.20.3 #127

chore(deps): update node.js to v18.20.3

chore(deps): update node.js to v18.20.3 #127

Workflow file for this run

name: Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node LTS
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Lint
run: yarn lint
- name: Format
run: yarn format:check
- name: Test
run: yarn test --passWithNoTests
- name: Build
run: yarn build