Bump version to 1.1.3 #114
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
# Tests this modules interaction with edgepi-rpc-server on the runner | |
name: Integration tests | |
on: | |
push: | |
branches: | |
- dev | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
test: | |
name: Integration Tests | |
runs-on: [self-hosted, linux, ARM64] | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
if: ${{ github.event_name == 'pull_request'}} | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Checkout | |
if: ${{ github.event_name == 'push'}} | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref_name }} | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20.10.0" | |
cache: "npm" | |
- name: Install npm@10.2.3 | |
run: npm i -g npm@10.2.3 | |
- name: Install dependencies | |
run: npm ci --prefer-offline | |
- name: Test with jest | |
run: | | |
npm run test tests/integration |