Skip to content

Bump webpack-dev-middleware from 5.3.3 to 5.3.4 (#15) #8

Bump webpack-dev-middleware from 5.3.3 to 5.3.4 (#15)

Bump webpack-dev-middleware from 5.3.3 to 5.3.4 (#15) #8

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3 #Setup Node
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- run: APIKEY=${{ secrets.APIKEY }} npm run build
- run: APIKEY=${{ secrets.APIKEY }} npm run examples
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./dist/example
deploy:
needs: build
permissions:
pages: write # to deploy to Pages
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2