Skip to content

Commit

Permalink
Merge pull request #29 from Wilcolab/ci-cd
Browse files Browse the repository at this point in the history
missing tests
  • Loading branch information
darmalovan authored Aug 6, 2024
2 parents c2c400a + d8d23b2 commit f89a388
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI/CD Pipeline

on: [pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run checks
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Install dependencies
run: yarn install
working-directory: frontend
- name: Run frontend client
run: yarn test
working-directory: frontend

0 comments on commit f89a388

Please sign in to comment.