Skip to content

Fix absolute path to keystore #657

Fix absolute path to keystore

Fix absolute path to keystore #657

Workflow file for this run

name: Code Checker
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
lint:
runs-on: ubuntu-latest
# Install dependencies and lint the typescript using prettier
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16'
- run: npm install
- run: npm run lint
unit-tests:
# The type of runner that the job will run on
runs-on: macos-latest
# Run our unit tests
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16'
- run: npm install
- run: npm run test