Skip to content

add proper test suffix #5

add proper test suffix

add proper test suffix #5

Workflow file for this run

name: CI
'on':
push:
branches:
- master
- beta
- '[0-9].[0-9x].x'
paths-ignore:
- README.md
- .husky/*
- .idea/*
- .vscode/*
pull_request: null
workflow_dispatch: null
jobs:
build_and_package:
runs-on: ubuntu-latest
env:
NODE_OPTIONS: '--max_old_space_size=4096'
steps:
- name: Checkout Repo
uses: actions/checkout@v3
if: ${{ github.event_name != 'pull_request' }}
with:
token: ${{ secrets.DEVOPS_TOKEN }}
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm
- name: Install NPM Dependencies
run: npm ci --verbose
- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v1
id: cpu-cores
- name: Run Tests
run: npm test -- --coverage --maxWorkers=${{ steps.cpu-cores.outputs.count }}