Skip to content

updated go tests

updated go tests #5

Workflow file for this run

name: Node.js Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
cd js/LinkedList/singly
npm install
- name: Run tests
run: |
cd js/LinkedList/singly
npm test