Skip to content

bump: 4.8.0 (#735) #1629

bump: 4.8.0 (#735)

bump: 4.8.0 (#735) #1629

Workflow file for this run

name: Check
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
node: [20]
check: [check-source-formatting, check-types, lint]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run ${{ matrix.check }}