Skip to content

Merge pull request #93 from poteat/poteat/additional-utilities #37

Merge pull request #93 from poteat/poteat/additional-utilities

Merge pull request #93 from poteat/poteat/additional-utilities #37

Workflow file for this run

name: Lint, build, and run stress tests
on:
push:
branches: [main]
jobs:
build-stress:
runs-on: ubuntu-latest
steps:
- name: Set Swap Space
uses: pierotofy/set-swap-space@master
with:
swap-size-gb: 24
- name: Checkout the repository
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Install npm dependencies
run: npm install
- name: Run linter
run: npm run lint-check
- name: Run TypeScript compiler
run: npm run build
- name: Run tests
run: npm test
- name: Run stress tests
run: npm run stress