Skip to content

[Snyk] Upgrade commander from 6.2.1 to 12.0.0 #9

[Snyk] Upgrade commander from 6.2.1 to 12.0.0

[Snyk] Upgrade commander from 6.2.1 to 12.0.0 #9

#This workflow runs the tests in the test projects to make sure the generator works as a library where it is a Node dependency along with the template.
name: Test using test project
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
jobs:
test:
if: github.event.pull_request.draft == false
name: Test generator as dependency with Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '18', '20' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run test
run: NODE_IMAGE_TAG=${{ matrix.node }} docker compose up --abort-on-container-exit --remove-orphans --force-recreate
working-directory: ./test/test-project