Skip to content

Test on push to refs/heads/develop by akarsh #1

Test on push to refs/heads/develop by akarsh

Test on push to refs/heads/develop by akarsh #1

Workflow file for this run

name: test-on-push
run-name: Test on push to ${{ github.ref }} by ${{ github.actor }}
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 21.x, 22.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test