Version Packages (#472) #252
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@v4 | |
- name: Install node deps and founry | |
uses: ./.github/actions/setup_deps | |
- name: Build js package | |
run: | | |
yarn turbo run build | |
- name: Test js package | |
run: | | |
yarn turbo run test:js |