Skip to content

adding more functionality to configmap #9

adding more functionality to configmap

adding more functionality to configmap #9

Workflow file for this run

name: test
on:
pull_request:
branches:
- master
push:
branches:
- '**'
tags:
- '*.*'
jobs:
test:
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 }}
- name: npm install and build
run: |
npm ci
npm run build
- name: test
run: |
npm test
env:
CI: true