Bump webpack from 5.76.1 to 5.94.0 in /examples/demo-react #134
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: CICD | |
# Triggers when pushed to master branch | |
on: | |
push: | |
paths-ignore: | |
- "README.md" | |
- "build/**" | |
- "demo/**" | |
jobs: | |
release: | |
name: lint type-check test | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: setup-node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14.x | |
registry-url: "https://registry.npmjs.org" | |
- name: Install Dependencies | |
run: | | |
yarn install | |
yarn dev |