Skip to content

Merge pull request #1 from hckrnews/feature/first-draft #4

Merge pull request #1 from hckrnews/feature/first-draft

Merge pull request #1 from hckrnews/feature/first-draft #4

Workflow file for this run

name: Node Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 21.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: npm test
run: |
npm ci
npm test
env:
CI: true