Skip to content

release version 3.3.3 #14

release version 3.3.3

release version 3.3.3 #14

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18
uses: actions/setup-node@v1
with:
node-version: 18
- run: yarn
- run: yarn run prettier:check
- run: yarn run build
- run: yarn run lint
docs:
if: ${{ github.event_name == 'push' }}
needs: [ build ]
runs-on: ubuntu-latest
concurrency:
group: docs-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18
uses: actions/setup-node@v1
with:
node-version: 18
- run: yarn
- run: yarn build
- env:
BUILD_NUMBER: ${{ github.run_number }}
REPO_USER: ${{ github.repository_owner }}
REPO_NAME: ${{ github.event.repository.name }}
GIT_REF: ${{ github.ref }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: scripts/github/publishDocs.sh