Files
documentation/.github/workflows/test-deploy.yml
2024-12-30 12:11:31 +05:30

28 lines
700 B
YAML

name: Test deployment
on:
pull_request:
branches:
- master
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
jobs:
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Install Fontawesome
run: npm install --save font-awesome
- name: Test build documents
run: npm run build