Support Prettier's overrides
option; upgrade to Prettier 3.4.2
#85
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: Build | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Mount bazel cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/bazel | |
key: bazel | |
- name: Configure bazel | |
run: .github/configure-bazel | |
- name: Test | |
run: | |
bazel test tools/bazel:bazelrc.diff tools/lint:format_test | |
tools/lint:lint_test | |
# needs rules_file to work with generate directories tools/javascript:js_diff | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Mount bazel cache | |
uses: actions/cache@v3 | |
with: | |
path: "~/.cache/bazel" | |
key: bazel | |
- name: Configure bazel | |
run: .github/configure-bazel | |
- name: Test | |
run: bazel test :test |