Skip to content

v4.2.2

v4.2.2 #342

Workflow file for this run

# @format
name: Node.js CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 21.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: 📌 Install
run: yarn
- name: 🔨 Build
run: yarn build
- name: 🧪 Test
run: yarn test:ci