Skip to content

Commit

Permalink
ci: make github workflow to test the application
Browse files Browse the repository at this point in the history
  • Loading branch information
patricks-js committed Nov 24, 2024
1 parent dc128db commit e9ec1f2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/testing-workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Testing Integration

on: [push]

jobs:
testing:
runs-on: ubuntu-latest

steps:
- name: Check out repository code
uses: actions/checkout@v4
- uses: pnpm/action-setup@0609f0983b7a228f052f81ef4c3d6510cae254ad
with:
version: 9.14.2
- name: Use Node.js v22
uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Test code
run: pnpm test

0 comments on commit e9ec1f2

Please sign in to comment.