diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 6d5ee8a..d894e93 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -23,11 +23,12 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - name: npm install, build and test + - name: npm install, build # and test run: | npm ci npm run build - npm test + # We don't have tests (yet?) + # npm test env: CI: true