Skip to content

Bump tar from 6.2.0 to 6.2.1 #12

Bump tar from 6.2.0 to 6.2.1

Bump tar from 6.2.0 to 6.2.1 #12

Workflow file for this run

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