Skip to content

feat(day02): initial NodeJS workspace + Vite App with Bazel #3

feat(day02): initial NodeJS workspace + Vite App with Bazel

feat(day02): initial NodeJS workspace + Vite App with Bazel #3

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: bazelbuild/setup-bazelisk@v2
- uses: actions/cache@v3
with:
path: "~/.cache/bazel"
key: bazel
- run: bazel build //...
- run: bazel test //...