Skip to content

Automated version update to 1.0.6 #49

Automated version update to 1.0.6

Automated version update to 1.0.6 #49

Workflow file for this run

# main continuous integration
name: main
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the prod branch
push:
branches:
- main
- prod
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [ 20.x ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
echo "install"
npm ci
echo "show outdated (if any)"
npm outdated --depth=3 || echo "you must think about update your dependencies :)"
- name: Build Docusaurus site
run: npm run build