Skip to content

Commit

Permalink
no-log: add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonatepaint committed Apr 10, 2024
1 parent ab770f9 commit 7c52b2f
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 }}

0 comments on commit 7c52b2f

Please sign in to comment.