Skip to content

Bump @babel/traverse from 7.14.8 to 7.23.2 #31

Bump @babel/traverse from 7.14.8 to 7.23.2

Bump @babel/traverse from 7.14.8 to 7.23.2 #31

Workflow file for this run

name: Deploy GitHub pages
on:
push:
branches:
- master
env:
GH_PAGES_DIR: gh-pages-dist
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# with:
# persist-credentials: false
- uses: actions/setup-node@v1
with:
node-version: 14
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build -- --env out=$GH_PAGES_DIR
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: ${{ env.GH_PAGES_DIR }} # The folder the action should deploy.
CLEAN: true