Skip to content

Bump @babel/traverse from 7.20.1 to 7.23.2 #46

Bump @babel/traverse from 7.20.1 to 7.23.2

Bump @babel/traverse from 7.20.1 to 7.23.2 #46

Workflow file for this run

name: Build
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'npm'
- name: Build
shell: bash
run: |
npm install
npm run build
- uses: actions/checkout@v2
with:
ref: gh-pages
path: www
- name: Update gh-pages branch
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
cp -rf public/* www
cd www
git add -A
git commit -m 'Autobuild'
git push