This repository has been archived by the owner on Sep 8, 2023. It is now read-only.
made the code to get deployment from appropriate dapi endpoint #70
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Checks | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
code-format: | |
name: Code Format | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
name: Setup Node.js | |
with: | |
node-version: "18.x" | |
- name: Setup yarn | |
run: npm install -g yarn | |
- run: yarn | |
- run: yarn ci:code-formatting | |
code-style: | |
name: Code Style | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
name: Setup Node.js | |
with: | |
node-version: "18.x" | |
- name: Setup yarn | |
run: npm install -g yarn | |
- run: yarn | |
- run: yarn ci:code-style | |
build: | |
name: build check | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
name: Setup Node.js | |
with: | |
node-version: "18.x" | |
- name: Setup yarn | |
run: npm install -g yarn | |
- run: yarn install --immutable | |
- run: yarn build |