Bump webpack from 5.76.0 to 5.94.0 (#49) #65
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: Github Pages Deploy | |
on: | |
push: | |
branches: | |
- "master" | |
jobs: | |
# test: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout | |
# uses: actions/[email protected] | |
# - name: Install | |
# run: npm install | |
# - name: Test | |
# run: npm run test | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
#needs: test | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install | |
run: npm install | |
- name: Build | |
run: npm run prod | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: dist # The folder the action should deploy. |