feat: get usbmuxd socket address from USBMUXD_SOCKET_ADDRESS environm… #312
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
name: Unit Tests | |
on: [push, pull_request] | |
jobs: | |
prepare_matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
versions: ${{ steps.generate-matrix.outputs.active }} | |
steps: | |
- name: Select all active LTS versions of Node.js | |
id: generate-matrix | |
uses: msimerson/node-lts-versions@v1 | |
test: | |
runs-on: ubuntu-latest | |
needs: | |
- prepare_matrix | |
strategy: | |
matrix: | |
node-version: ${{ fromJSON(needs.prepare_matrix.outputs.versions) }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dev dependencies | |
run: npm install | |
- name: Run linter | |
run: npm run lint | |
- name: Run unit tests | |
run: npm run test |