Skip to content

chore(deps-dev): bump @commitlint/cli from 17.6.3 to 17.8.0 #469

chore(deps-dev): bump @commitlint/cli from 17.6.3 to 17.8.0

chore(deps-dev): bump @commitlint/cli from 17.6.3 to 17.8.0 #469

Workflow file for this run

name: Node.js CI
on:
push:
pull_request:
branches: [develop]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 19.x, 20.x]
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 1
- name: Setup Node ${{ matrix.node-version }}
uses: actions/[email protected]
with:
cache: yarn
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn run build
- run: yarn test
- run: yarn run build:docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
if: ${{ matrix.node-version }} == '20.x'
with:
path: "docs"
docs:
name: Deploy Docs
runs-on: ubuntu-latest
needs: build
if: github.event_name == 'push' && github.ref == 'refs/heads/develop'
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2