Skip to content

npm upgrade

npm upgrade #120

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- master
jobs:
build-gh-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- run: npm ci
- run: npm test
- name: git commit
run: |
git add -f ./dist
git config user.email "[email protected]"
git config user.name "GitHub Action"
git commit -m "Build"
git push -f origin HEAD:gh-pages