Skip to content

dependency bumps

dependency bumps #158

Workflow file for this run

name: CI
on:
pull_request:
types: ['opened', 'reopened', 'synchronize']
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
node: [18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install
run: |
npm i -g npm
npm ci --prefer-offline --omit=optional
- name: Format Check
run: npm run format:check
- name: Build
run: npm run build