Skip to content

chore(release): v4.0.3 #96

chore(release): v4.0.3

chore(release): v4.0.3 #96

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.GH_ADMIN_TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
always-auth: true
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Unit tests
run: yarn test