fix: signingConfigs for test apk (#918) #1
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: [pull_request, push] | |
jobs: | |
prepare_matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
versions: ${{ steps.generate-matrix.outputs.versions }} | |
steps: | |
- name: Select 3 most recent LTS versions of Node.js | |
id: generate-matrix | |
run: echo "versions=$(curl -s https://endoflife.date/api/nodejs.json | jq -c '[[.[] | select(.lts != false)][:3] | .[].cycle | tonumber]')" >> "$GITHUB_OUTPUT" | |
node_test: | |
needs: | |
- prepare_matrix | |
strategy: | |
matrix: | |
node-version: ${{ fromJSON(needs.prepare_matrix.outputs.versions) }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- run: npm install --no-package-lock | |
name: Install dev dependencies | |
- run: npm run lint | |
name: Run js linter | |
- run: npm run test:node | |
name: Run js unit tests | |
kotlin_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- run: npm install --no-package-lock | |
name: Install dev dependencies | |
- run: npm run lint:server | |
name: Run server linter | |
- run: npm run test:server | |
name: Run server unit tests |