Skip to content

chore(release): v2.0.0 #56

chore(release): v2.0.0

chore(release): v2.0.0 #56

Workflow file for this run

name: Node.js CI
on:
pull_request:
push:
branches:
- main
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Check Code Style
run: pnpm run ci
- name: Run tests
env:
DB_URI: ${{ secrets.DB_URI }}
run: pnpm run test
- name: Build
run: pnpm run build