Skip to content

⬆️ [Node] Update to 18.17.0 #46

⬆️ [Node] Update to 18.17.0

⬆️ [Node] Update to 18.17.0 #46

Workflow file for this run

name: Test
on: [push]
jobs:
test:
name: Run test suites
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node 18.x to install with private scope
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Test
run: npm run test