Skip to content

chore: build with rollup #56

chore: build with rollup

chore: build with rollup #56

Workflow file for this run

name: CI Build
on:
push:
branches: main
pull_request:
branches: main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
- run: npm ci
- run: npm run format:check
- run: npm run lint
build:
name: Build ${{ matrix.node-version }} @ ${{ matrix.os }}
strategy:
matrix:
node-version:
- 18
- 20
- latest
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test