removed maxDepth from dependency tree & filter by name and version #97
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
on: | |
push: | |
branches: | |
- "*" | |
name: Build & Test | |
jobs: | |
release: | |
name: Build And Test | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
id-token: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
cache: 'npm' | |
registry-url: 'https://npm.pkg.github.com' | |
scope: '@dxworks' | |
- name: Build Node App | |
run: | | |
npm ci | |
npm run create | |
env: | |
GH_TOKEN: ${{ secrets.GH_PACKAGES_TOKEN }} | |
CI: true | |