Skip to content

update preconstruct #364

update preconstruct

update preconstruct #364

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['20']
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test