Skip to content
This repository has been archived by the owner on May 17, 2022. It is now read-only.

Commit

Permalink
#1 circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
marcog83 committed May 9, 2022
1 parent 9324b4d commit f526046
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,39 +1,35 @@
version: 2.1
orbs:
node: circleci/[email protected].0
node: circleci/[email protected].2

jobs:
test:
executor:
name: node/default
tag: '17.3.1'
test:
steps:
- checkout
- node/install-packages:
check-cache: always
pkg-manager: yarn-berry
- node/install:
install-yarn: true
node-version: '16.13'
- run: node --version
- run:
command: yarn run test
name: Run YARN tests
- store_test_results:
path: junit.xml

lint:
executor:
name: node/default
tag: '17.3.1'
steps:
- checkout
- node/install-packages:
check-cache: always
pkg-manager: yarn-berry
- node/install:
install-yarn: true
node-version: '16.13'
- run: node --version
- run:
command: yarn run lint
name: Run YARN eslint
deploy:
executor:
name: node/default
tag: '17.3.1'
tag: '16.13'
steps:
- checkout
- run:
Expand Down

0 comments on commit f526046

Please sign in to comment.