Added missing protocol-sdk changeset (#357) #21
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: JS | |
on: push | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
build_js: | |
strategy: | |
fail-fast: true | |
name: Build js package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install node deps and founry | |
uses: ./.github/actions/setup_deps | |
- name: Build js package | |
run: | | |
npx turbo run build | |
- name: Test js package | |
run: | | |
npx turbo run test:js |