Skip to content

Commit

Permalink
Merge pull request #22 from juspay/setup-ci
Browse files Browse the repository at this point in the history
setup ci
  • Loading branch information
JeevaRamu0104 authored Nov 28, 2023
2 parents 967de86 + 7559dee commit a8810c2
Show file tree
Hide file tree
Showing 3 changed files with 27,094 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on:
pull_request:

jobs:
build:
name: Build Check
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v4

- name: "Setup node"
uses: actions/setup-node@v4
with:
node-version: 20

- name: "Setup yarn"
run: corepack enable

- name: "Install dependencies"
run: yarn install

- name: "Build"
run: npm run re:build
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ lib/
!.yarn/versions.DS_Store
/public/env-config.js
env-config.js
yarn.lock
# yarn.lock
package-lock.json
user_data.sh
*.pem
Loading

0 comments on commit a8810c2

Please sign in to comment.