refactor: update messageType values #1858
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use "act" for local testing: https://github.com/nektos/act | |
name: Lint, Unit, Non-snapshot tests | |
on: | |
# allow for manual triggers | |
workflow_dispatch: {} | |
workflow_call: {} | |
push: | |
branches: | |
- develop | |
pull_request: {} | |
jobs: | |
lintAndUnit: | |
name: Lint and Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- name: 📥 Download deps | |
uses: bahmutov/npm-install@v1 | |
with: | |
useLockFile: false | |
- name: Lint | |
run: npm run lint | |
- name: Unit Tests | |
run: npm run test | |
functionalNonSnapshot: | |
name: Functional Non-Snapshot Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- name: 📥 Download deps | |
uses: bahmutov/npm-install@v1 | |
with: | |
useLockFile: false | |
- name: Run server | |
run: ./.github/scripts/runServer.sh | |
- name: Functional Non-Snapshot Tests | |
run: npm run test:func:nosnaps |