diff --git a/README.md b/README.md index c9ae590..f3729c2 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # nodejs-actions-starter-template +[![CI](https://github.com/joshjohanning/nodejs-actions-starter-template/actions/workflows/ci.yml/badge.svg)](https://github.com/joshjohanning/nodejs-actions-starter-template/actions/workflows/ci.yml) +[![Publish GitHub Action](https://github.com/joshjohanning/nodejs-actions-starter-template/actions/workflows/publish.yml/badge.svg)](https://github.com/joshjohanning/nodejs-actions-starter-template/actions/workflows/publish.yml) ![Coverage](./badges/coverage.svg) 👋 Starter template with the action layout, linting, CI, and publishing pre-configured diff --git a/package.json b/package.json index bba6070..0d7b491 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "format:write": "npx prettier --write .", "format:check": "npx prettier --check .", "lint": "npx eslint .", - "package": "npx ncc build src/index.js -o dist --source-map --license licenses.txt", + "package": "npx @vercel/ncc build src/index.js -o dist --source-map --license licenses.txt", "package:watch": "npm run package -- --watch", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "all": "npm run format:write && npm run lint && npm run ci-test && npm run coverage && npm run package"