Use configurable test profile #42
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: On Code Change (PR) | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
lint-build: | |
name: Lint and build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Setup .npmrc file to publish to npm | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16.x' | |
registry-url: 'https://registry.npmjs.org' | |
- run: yarn install | |
- run: yarn lint | |
- run: yarn run build |