Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

feature: add github actions #3

feature: add github actions

feature: add github actions #3

Workflow file for this run

name: PR
on:
pull_request:
branches:
- master
jobs:
pr:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macos-13, windows-2022]
runs-on: ${{ matrix.os }}
timeout-minutes: 40
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: npm ci
run: npm ci