Skip to content

Commit

Permalink
Fix circleci config
Browse files Browse the repository at this point in the history
  • Loading branch information
FabijanC committed Sep 27, 2021
1 parent 34adfcc commit 3a51f40
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ aliases:
steps:
- checkout
- run:
name: Install
command: npm install
name: Install
command: npm install
- run:
name: Build
command: npm run build
name: Build
command: npm run build
- run:
name: Test
command: npm run test
name: Test
command: npm run test

jobs:
test_node_v12:
Expand All @@ -29,20 +29,20 @@ jobs:
steps:
- checkout
- run:
name: Publish
command: ./scripts/npm-publish.sh
name: Publish
command: ./scripts/npm-publish.sh

workflows:
version: 2.1
version: 2
test_and_publish:
jobs:
- test_node_v12
- test_node_v14
- npm_publish:
filters:
branches:
only:
- master
requires:
test_node_v12
test_node_v14
filters:
branches:
only:
- master
requires:
- test_node_v12
- test_node_v14

0 comments on commit 3a51f40

Please sign in to comment.