Skip to content

setup github action

setup github action #1

Workflow file for this run

name: workflow
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'pnpm'
- run: pnpm install
- name: Run Tests
run: pnpm run test