Skip to content

feat: CI/CD

feat: CI/CD #5

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: './.nvmrc'
- name: install dependencies
run: yarn install
- name: build
run: yarn make