Merge pull request #444 from ourzora/ilan/og-2 #267
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 | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
name: Build js package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache turbo build setup | |
uses: actions/cache@v4 | |
with: | |
path: .turbo | |
key: ${{ runner.os }}-turbo-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-turbo- | |
- name: Install node deps and founry | |
uses: ./.github/actions/setup_deps | |
- name: Build js package | |
run: | | |
pnpm turbo run build | |
- name: Test js package | |
run: | | |
pnpm turbo run test:js |