WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

fix: circArray sample #14

fix: circArray sample

fix: circArray sample #14

Workflow file for this run

name: Pipeline
on:
- push
jobs:
check:
name: Source Revision
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x, 22.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Run Format Check
run: npm run format:check
- name: Run Lint Check
run: npm run lint:check
- name: Build
run: npm run build
- name: Run Tests
run: npm run test