Skip to content

version 23 update

version 23 update #4

Workflow file for this run

name: Nasa Project CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
strategy:
matrix:
node-version: [16.x, 23.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js version ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --prefix client
- run: npm test