[feat-ls-2155-indexer]: update config #220
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: Lint and test | |
on: [push, pull_request] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
nodejs: [12, 14, 16] | |
steps: | |
- uses: actions/checkout@v2 | |
# https://github.com/actions/setup-node | |
- uses: actions/setup-node@v2-beta | |
with: | |
node-version: ${{ matrix.nodejs }} | |
- run: yarn install | |
- run: yarn add -D esbuild | |
- run: yarn test | |
- run: yarn lint | |
- run: yarn build-all |