Skip to content

Update actions/checkout action to v4 (next) #472

Update actions/checkout action to v4 (next)

Update actions/checkout action to v4 (next) #472

Workflow file for this run

on:
pull_request:
branches:
- master
- next
push:
branches:
- master
- next
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install
run: yarn install --immutable
- name: build
run: yarn build:all
- name: Tests
run: yarn test:all
- name: Lint
run: yarn lint:all