Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

ci(deps): update node.js to 15cebc4 #2000

ci(deps): update node.js to 15cebc4

ci(deps): update node.js to 15cebc4 #2000

Workflow file for this run

name: Shareable Lists API
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: Run Unit Tests
defaults:
run:
shell: bash
working-directory: ./
strategy:
matrix:
node-version: [18.x]
steps:
- name: Check out the repository
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run the test suite
run: npm test