Skip to content

Commit

Permalink
feat: github test build ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
jun-brro committed May 6, 2024
1 parent dff615c commit a03bea7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/client-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: client-test
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code.
uses: actions/checkout@v2

- name: Check Node v
run: node -v

- name: Install Dependencies
run: npm install --frozen-lockfile

- name: Build
run: npm run build

0 comments on commit a03bea7

Please sign in to comment.