Skip to content

chore(deps): update devdependencies (major) to v6 (major) - autoclosed #216

chore(deps): update devdependencies (major) to v6 (major) - autoclosed

chore(deps): update devdependencies (major) to v6 (major) - autoclosed #216

Workflow file for this run

# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
name: "Test"
on: # yamllint disable-line rule:truthy
pull_request:
branches:
- "([0-9])?(.{+([0-9]),x}).x"
- "main"
- "next"
- "next-major"
- "alpha"
- "beta"
jobs:
test:
strategy:
matrix:
os: ["ubuntu-latest"]
node_version: ["16", "17"]
include:
- os: "macos-latest"
node_version: "16"
- os: "windows-latest"
node_version: "16"
fail-fast: false
name: "Build & Unit Test: node-${{ matrix.node_version }}, ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
steps:
- name: "Git checkout"
uses: "actions/checkout@v3"
env:
GIT_COMMITTER_NAME: "GitHub Actions Shell"
GIT_AUTHOR_NAME: "GitHub Actions Shell"
EMAIL: "github-actions[bot]@users.noreply.github.com"
- uses: "pnpm/[email protected]"
with:
version: 6
- name: "Set node version to ${{ matrix.node_version }}"
uses: "actions/setup-node@v3"
with:
node-version: "${{ matrix.node_version }}"
cache: "pnpm"
- name: "Install packages"
run: "pnpm install"
- name: "test and coverage"
run: "pnpm run test:coverage"