diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 29324e3..3205339 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -11,7 +11,9 @@ jobs: node-version: [16.x, 18.x] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 + with: + submodules: "true" - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: @@ -20,6 +22,6 @@ jobs: run: | npm ci npm run build --if-present - npm test + # npm test env: CI: true