Bump webpack-dev-middleware from 5.3.3 to 5.3.4 #14
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[CI SKIP]')" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- name: 🚚 Get latest code | |
uses: actions/checkout@v3 | |
- name: ⚡ use node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16.x" | |
- name: ⚙️ npm setup | |
run: npm ci | |
- name: 🔨 npm build | |
run: npm run build | |
- name: 🚀 deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build |