Skip to content

Bump json5 from 2.2.0 to 2.2.3 #5

Bump json5 from 2.2.0 to 2.2.3

Bump json5 from 2.2.0 to 2.2.3 #5

Workflow file for this run

name: github-pages
on: push
jobs:
pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/[email protected]
with:
node-version: '14.x'
- name: Cache .pnpm-store
uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-${{ matrix.node-version }}
- name: install pnpm and npm
run: |
curl -L https://pnpm.js.org/pnpm.js | node - add --global pnpm@dev npm@6
- name: pnpm install
run: pnpm install
- name: build pages
run: npm run build
- name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./examples