Skip to content

Commit

Permalink
ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
Kathund committed Nov 15, 2023
1 parent 25aa121 commit b9f4c38
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# This CI Workflow was deployed and configured by WarpWing and Nate.
name: CI/CD

on:
push:
pull_request:
workflow_dispatch:

env:
NODE_VERSION: "16.x"

jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4

- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}

- name: Install node dependencies
run: npm i

- name: prettier
run: npm run prettier:check

compile:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4

- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}

- name: Install node dependencies
run: npm i

- name: Copy Config,
run: cp config.example.json config.json

- name: Test Compile
run: npm run compile

0 comments on commit b9f4c38

Please sign in to comment.