mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-21 21:24:57 +02:00
pipeline
This commit is contained in:
26
.github/workflows/test-deploy.yml
vendored
Normal file
26
.github/workflows/test-deploy.yml
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
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
|
Reference in New Issue
Block a user