Skip to content
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

made the code to get deployment from appropriate dapi endpoint

made the code to get deployment from appropriate dapi endpoint #70

Workflow file for this run

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