Skip to content

Update testing-workflow.yaml #2

Update testing-workflow.yaml

Update testing-workflow.yaml #2

name: Testing Integration
on: [push]
jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Use Node.js v22
uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Install dependencies
run: npm install
- name: Test code
run: npm run test