Skip to content

v6.3.2

v6.3.2 #190

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: [$default_branch]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn install:example --frozen-lockfile
- run: yarn ci
- uses: codecov/codecov-action@v1
- run: yarn build