diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 05f5588..b6552d2 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -8,6 +8,7 @@ on: branches: [ "master" ] pull_request: branches: [ "master" ] + workflow_call: jobs: build: @@ -21,11 +22,14 @@ jobs: steps: - uses: actions/checkout@v3 + - name: testing + run: ls - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} cache: 'npm' + - run: ls - run: npm ci - run: npm run build --if-present - run: npm test