Skip to content

add pipeline

add pipeline #1

Workflow file for this run

name: Main CI Workflow
on: push
jobs:
build-test:
name: Build, Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn install
- run: yarn test