-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (37 loc) · 947 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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 }}