Update dependency webpack-dev-server to v4.3.1 #216
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: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [12, 14, 15] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Misk-Web | |
run: sudo npm install -g @misk/cli | |
- name: Misk-Web Prebuild | |
run: miskweb prebuild -e | |
- name: Rush check for inconsistent dependency versions | |
run: node common/scripts/install-run-rush.js check | |
- name: Rush update | |
run: node common/scripts/install-run-rush.js update | |
- name: Rush build | |
run: node common/scripts/install-run-rush.js build --verbose | |
- name: miskweb new (using branch built CLI) | |
run: | | |
mkdir branch-cli-new-test && cd branch-cli-new-test | |
node ../packages/@misk/cli/lib/src/index.js new "Alpha Bravo" "alpha-bravo" |