feat: offline map search #3899
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: Test | |
on: | |
merge_group: | |
push: | |
branches: | |
- main | |
- dependencies | |
pull_request: | |
branches: | |
- main | |
- dependencies | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out git repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".tool-versions" | |
cache: "npm" | |
cache-dependency-path: | | |
dev-client/package-lock.json | |
- name: Install Node dependencies | |
working-directory: ./dev-client | |
run: npm ci | |
- name: Test JavaScript | |
working-directory: ./dev-client | |
run: npm run test |