Skip to content

Fix for some switch lock-ins for common terms #251

Fix for some switch lock-ins for common terms

Fix for some switch lock-ins for common terms #251

Workflow file for this run

name: Build and test
on: [pull_request]
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14.x, 18.x]
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: use node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-${{ matrix.node-version }}-
${{ runner.os }}-npm-
- name: install
run: |
npm ci
npm run plugins:ci
- name: static checks
run: |
npm i --no-save eslint
npm run lint
- name: build
run: |
npm run build
npm run plugins:build
- name: test
run: |
npm run test:smoke
npm run test
npm run test:one
npm run test:two
npm run test:three
npm run testb
npm run test:plugins
# npm run perf
# npm run test:types
# npm run test:stress