diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1d36ea2..239b06e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,6 +21,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - run: npm install + - run: npm ci + - run: npm run check - run: npm run build - run: npm test diff --git a/CHANGELOG.md b/CHANGELOG.md index caad5d9..4cb0380 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.0.1 + +Fixing build script + ## 1.0.0 Initial version \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index c51ac8c..85ba039 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "retire-scanner", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "retire-scanner", - "version": "1.0.0", + "version": "1.0.1", "license": "Apache-2.0", "dependencies": { "cacheable-lookup": "^7.0.0", diff --git a/package.json b/package.json index adee006..02829fb 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "author": "Erlend Oftedal ", "name": "retire-scanner", - "version": "1.0.0", + "version": "1.0.1", "license": "Apache-2.0", "description": "A scanner for checking a web site using retire.js", "main": "dist/index.js", @@ -12,6 +12,7 @@ "start": "ts-node src/index", "build": "tsc --build", "watch": "tsc --watch", + "check": "npm run lint && npm run typecheck", "test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'", "lint": "eslint . --ext .js,.ts --fix --ignore-path .gitignore" },