Use lookupaplate.com instead of carfax.com for plate lookups (#355) #1144
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: Node.js CI - build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.8.0] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.22.19 | |
- run: export PATH=$HOME/.yarn/bin:$PATH | |
- run: yarn | |
- run: yarn build | |
env: | |
CI: true |