Update publish-nym-wallet-macos.yml #16
Workflow file for this run
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: CI for Nym API Tests | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "nym-api/**" | |
defaults: | |
run: | |
working-directory: nym-api/tests | |
jobs: | |
test: | |
name: nym-api tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install npm | |
run: npm install | |
- name: Node v18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.1.0 | |
- name: Install yarn | |
run: yarn install | |
- name: Run yarn | |
run: yarn | |
- name: Run tests | |
run: yarn test:sandbox | |
working-directory: nym-api/tests |