Prevent the version to be Brave-only (without the Chromium major). #635
Workflow file for this run
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: Tracker&Griffin tests | |
on: | |
pull_request: | |
merge_group: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
- name: npm install | |
run: npm install | |
- name: typecheck | |
run: npm run typecheck | |
- name: lint | |
run: npm run lint -- --all | |
- name: run tests | |
run: npm run test | |
- name: build | |
run: npm run build |