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

chore(deps): bump actions/checkout from 4 to 6 #168

chore(deps): bump actions/checkout from 4 to 6

chore(deps): bump actions/checkout from 4 to 6 #168

Workflow file for this run

name: 🧪 Test
on:
push:
branches:
- "*"
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: "🧪 Test"
strategy:
fail-fast: false
matrix:
node:
- 14
- 16
- 18
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v6
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: 16
- name: 🟧 Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 8
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: 🏗 Build
run: pnpm run build
- name: "🧪 Test: (OS: ${{ matrix.os }} Node: ${{ matrix.node }})"
run: pnpm run test