build(deps-dev): bump webpack #135
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 checks and build | |
on: [push, pull_request] | |
jobs: | |
build-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '14.x' | |
- uses: bahmutov/npm-install@HEAD | |
- name: Build check | |
run: yarn build | |
- name: Lint check | |
run: yarn lint | |
- name: Prettier check | |
run: yarn prettier:check |