Development #13
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: tests_master | |
on: | |
# push: | |
# branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
jobs: | |
run_tests_master: | |
runs-on: ubuntu-latest | |
container: node:20-bookworm | |
steps: | |
- name: clone repo | |
uses: actions/checkout@v3 | |
- name: snet-sdk for node.js | |
run: | | |
cd packages/nodejs | |
npm install . | |
npm run build | |
- name: snet-sdk for web | |
run: | | |
cd packages/web | |
npm install . | |
npm run build |