Skip to content

build(deps): bump actions/checkout from 3 to 4 #270

build(deps): bump actions/checkout from 3 to 4

build(deps): bump actions/checkout from 3 to 4 #270

Workflow file for this run

name: Main workflow
on: [push]
jobs:
run:
name: Run
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- if: matrix.os != 'windows-latest'
name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Build
run: yarn build