Skip to content

ci(pnpm): ship to pnpm v8 #135

ci(pnpm): ship to pnpm v8

ci(pnpm): ship to pnpm v8 #135

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Building
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [18]
architecture: [x64]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 1
- name: Setup pnpm
uses: pnpm/action-setup@v3
- name: Setup Node environment
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
architecture: ${{ matrix.architecture }}
registry-url: https://registry.npmjs.org/
cache: 'pnpm'
- name: Install dependencies
run: |
pnpm
- name: Build package
run: |
pnpm build