Skip to content

feat: create test and release pipelines #1

feat: create test and release pipelines

feat: create test and release pipelines #1

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'
- name: Install dependencies
run: yarn
- name: Run build
run: yarn build
- name: Run test
run: yarn test