Skip to content

refactor: update ci tests, add metadata for wSOL check #15

refactor: update ci tests, add metadata for wSOL check

refactor: update ci tests, add metadata for wSOL check #15

Workflow file for this run

name: Deploy Documentation to GitHub Pages
on:
push:
branches:
- develop
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20 # Use the appropriate version of Node.js for your project
- name: Install dependencies
run: yarn install
- name: Build packages
run: yarn build
- name: Build documentation
run: yarn docs
# Deploy to GitHub Pages
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs # This is the directory that contains the built documentation
cname: sdk.neonevm.org