remove the 'npm build' step from the circleci config

This commit is contained in:
TimothyKeaveny 2023-02-28 05:09:54 +07:00
parent a3c79cd89b
commit 2c11b64a21

View file

@ -33,14 +33,8 @@ commands:
- run:
name: Test
command: |
npm run build
npm run test
deploy:
steps:
- run:
name: Deploy
command: |
npm run semantic-release
jobs:
build-and-test:
executor: default-executor
@ -50,15 +44,6 @@ jobs:
- setup
- save_test_cache
- test
- persist_to_workspace:
root: ~/project
paths: .
deploy:
executor: default-executor
steps:
- attach_workspace:
at: ~/project
- deploy
workflows:
build-and-test-workflow: