Skip to content

Commit

Permalink
Merge pull request #31 from Jiangk1996/feature/circleci-config
Browse files Browse the repository at this point in the history
Add circleci config
  • Loading branch information
huangjiuyuan authored Jun 27, 2022
2 parents 32a6c31 + 599f328 commit 2d22515
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: 2.1
orbs:
node: circleci/node@5.0.2

# Define the jobs we want to run for this project
jobs:
lint:
executor: node/default
steps:
- checkout
- node/install-packages:
pkg-manager: npm
- run:
name: Lint code
command: npm run lint

# Orchestrate our job run sequence
workflows:
lint:
jobs:
- lint

0 comments on commit 2d22515

Please sign in to comment.