Skip to content

Bump @babel/traverse from 7.22.5 to 7.23.2 in /site (#93) #15

Bump @babel/traverse from 7.22.5 to 7.23.2 in /site (#93)

Bump @babel/traverse from 7.22.5 to 7.23.2 in /site (#93) #15

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
defaults:
run:
working-directory: ./site
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
cache-dependency-path: './site/package-lock.json'
- run: npm ci
- run: npm run build
- name: Deploy
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}