Skip to content

feat: add pipeline for syncing beta with main #5

feat: add pipeline for syncing beta with main

feat: add pipeline for syncing beta with main #5

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