[tfjs-core] do not hang on invalid browser files (#8517) #13
This file contains hidden or 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: TFJS Continuous Integration | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: bazel-contrib/[email protected] | |
with: | |
# Avoid downloading Bazel every time. | |
bazelisk-cache: true | |
# Store build cache per workflow. | |
disk-cache: ${{ github.workflow }}-cpu | |
# Share repository cache between workflows. | |
repository-cache: true | |
- uses: actions/checkout@v4 | |
- name: Test TFJS CPU | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: 'npm' | |
- run: npm i -g yarn | |
- run: yarn install | |
- run: yarn test-cpu | |
test-gpu-mac: | |
runs-on: macos-latest-xlarge # consumer gpu | |
steps: | |
- uses: bazel-contrib/[email protected] | |
with: | |
# Avoid downloading Bazel every time. | |
bazelisk-cache: true | |
# Store build cache per workflow. | |
disk-cache: ${{ github.workflow }}-gpu-mac | |
# Share repository cache between workflows. | |
repository-cache: true | |
- uses: actions/checkout@v4 | |
- name: Test TFJS GPU | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: 'npm' | |
- run: npm i -g yarn | |
- run: yarn install | |
- run: yarn test-gpu |