Skip to content

[Improvement] Add more installation commands, with shell code blocks #208

[Improvement] Add more installation commands, with shell code blocks

[Improvement] Add more installation commands, with shell code blocks #208

Workflow file for this run

name: Test
on:
push:
branches:
- "main"
pull_request:
permissions:
contents: read
jobs:
main:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
node-version: [16, 18, 20]
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache node_modules
id: cache-node_modules
uses: actions/cache@v3
with:
path: node_modules
key: node_modules-${{ matrix.os }}-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
- name: npm ci
if: steps.cache-node_modules.outputs.cache-hit != 'true'
run: npm ci --no-audit
- name: Jest - flat
run: npx jest
env:
ESLINT_CONFIG_PRETTIER_NO_DEPRECATED: "true"
- name: Jest - eslintrc
run: npx jest
env:
ESLINT_USE_FLAT_CONFIG: "false"
- name: CLI sanity - flat
run: npm run test:cli-sanity
- name: CLI sanity - eslintrc
run: npm run test:cli-sanity
env:
ESLINT_USE_FLAT_CONFIG: "false"
- name: CLI sanity warning - flat
run: npm run test:cli-sanity-warning
- name: CLI sanity warning - eslintrc
run: npm run test:cli-sanity-warning
env:
ESLINT_USE_FLAT_CONFIG: "false"