multiwacz: do a full search on a URL if the result is a fuzzy match, … #1041
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Node.js, NPM and Yarn | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: yarn | |
- name: install | |
run: yarn install | |
- name: build | |
run: yarn build | |
- name: test | |
run: yarn test | |
- name: lint | |
run: yarn lint:check | |
- name: format | |
run: yarn format:check |