Update nextjs monorepo to v14.2.23 #262
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: Bazel CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: macOS-13 | |
steps: | |
- uses: actions/checkout@v4 | |
# - uses: bazelbuild/setup-bazelisk@v3 | |
# - name: Mount bazel cache # Optional | |
# uses: actions/cache@v4 | |
# with: | |
# path: "~/.cache/bazel" | |
# key: bazel | |
- name: Install Bazel | |
run: | | |
brew update | |
brew unlink bazelisk | |
brew install bazel | |
bazel --version | |
- name: Build | |
run: bazel build //... | |
- name: Test | |
run: bazel test //... |