fix: do not proxy commands for retrieving session data (#911) #1010
This file contains hidden or 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
name: Unit Tests | |
on: | |
pull_request: | |
branches: [ master ] | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
push: | |
branches: [ master ] | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
jobs: | |
prepare_matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
versions: ${{ steps.generate-matrix.outputs.lts }} | |
steps: | |
- name: Select all current LTS versions of Node.js | |
id: generate-matrix | |
uses: msimerson/node-lts-versions@v1 | |
unit-test: | |
needs: | |
- prepare_matrix | |
strategy: | |
matrix: | |
node-version: ${{ fromJSON(needs.prepare_matrix.outputs.versions) }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install --no-package-lock | |
name: Install dev dependencies | |
- run: npm run lint | |
name: Run linter | |
- run: npm run test | |
name: Run unit tests |