Skip to content

Commit

Permalink
add ci-cd pipline workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickvBeek committed Jun 7, 2024
1 parent ba345ce commit 0174097
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci-pipeline.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: ci-workflow
run-name: CI/CD Pipeline
on: [push, workflow_dispatch]
jobs:
ci-pipline:
runs-on: ubuntu-latest
steps:
- name: checking out code
uses: actions/checkout@v4
- name: setup node 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: install deps
run: npm ci

- name: apply prettier
run: npm run prettier

- name: Perfom type check
run: npm run typecheck

- name: Do unit tests
run: npm run test

- name: Build the application
run: npm run build

0 comments on commit 0174097

Please sign in to comment.