Skip to content

system test

system test #2571

Workflow file for this run

name: system test
on:
push:
pull_request:
branches:
- master
schedule:
- cron: '0 0 * * *'
jobs:
test:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ['16', '18']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- uses: pnpm/[email protected]
with:
version: 7.0.0
- name: Setup git config
run: |
git config --global user.name "GitHub Actions Bot"
git config --global user.email "<>"
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
cache: 'pnpm'
- name: Install dependencies ignore scripts
run: pnpm install --ignore-scripts
- name: Run system test
run: pnpm --filter elint run test:system