run lint & size as part of CI, but not before `npm run test`

The build step is no longer needed for tests, which in part allows us to
drop these.
This commit is contained in:
Keith Cirkel 2022-04-28 09:34:56 +01:00
Родитель 21e83d3a12
Коммит b74432c0b9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: C2988935153F2C6B
2 изменённых файлов: 4 добавлений и 1 удалений

4
.github/workflows/nodejs.yml поставляемый
Просмотреть файл

@ -26,5 +26,9 @@ jobs:
node-version: 13.11.0
- name: Install dependencies
run: npm i
- name: Lint Codebase
run: npm run lint
- name: Run Node.js Tests
run: npm run test
- name: Check Bundle Size
run: npm run size

Просмотреть файл

@ -30,7 +30,6 @@
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'",
"presize": "npm run build",
"size": "size-limit",
"pretest": "npm run size && npm run lint",
"test": "web-test-runner test/* --node-resolve"
},
"prettier": "@github/prettier-config",