Skip to content

pipeline fix

pipeline fix #49

Workflow file for this run

name: Build
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Yarn 3 (Berry)
run: npm install -g yarn@berry
- name: Set up Yarn 3
run: yarn set version berry
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build
- name: Run tests with coverage
run: yarn test