Skip to content

ci: make github workflow to test the application #1

ci: make github workflow to test the application

ci: make github workflow to test the application #1

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