removed dependency on lodash, removed pnpm-lock.yaml #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Requests | |
on: | |
pull_request: | |
types: [opened, edited, reopened, synchronize] | |
branches: | |
- master | |
jobs: | |
unit-test: | |
name: Unit Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
nodeVersion: [ 16, 18, 20 ] | |
jdkVersion: [ openjdk9, openjdk10, openjdk11, openjdk21 ] | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.nodeVersion }} | |
- name: npm ci | |
run: npm ci | |
- name: Unit test | |
run: npm test |