Skip to content

chore: bump to v0.10.1 #42

chore: bump to v0.10.1

chore: bump to v0.10.1 #42

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- node-version: 16
pnpm-version: 8
- node-version: 18
pnpm-version: latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: ${{ matrix.pnpm-version }}
run_install: false
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install
run: pnpm install
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build