mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-12-25 07:23:50 +01:00
26 lines
643 B
YAML
26 lines
643 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@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 18
|
|
cache: yarn
|
|
|
|
- name: Install dependencies
|
|
run: yarn install --frozen-lockfile
|
|
- name: Test build documents
|
|
run: yarn build |