Skip to content

chore: migrate to yarn package #2

chore: migrate to yarn package

chore: migrate to yarn package #2

Workflow file for this run

name: CI
on:
- pull_request
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18.12.1', '20.9.0']
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Init - Set up yarn environment
run: npm install -g yarn
- name: Install dependencies
run: yarn
- name: Unit Test
run: yarn test