Skip to content

Commit

Permalink
fix: setup circleci (#593)
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Bodin authored Jun 4, 2021
1 parent 69e3696 commit 4472405
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
version: 2.1

orbs:
node: circleci/node@4.1

jobs:
build:
docker:
- image: cimg/node:14.16.1

working_directory: ~/repo

steps:
- checkout

- node/install-packages:
pkg-manager: yarn

# - run:
# name: Lint
# command: yarn lint

# - run:
# name: Test
# command: yarn test


workflows:
suite:
jobs:
- build

0 comments on commit 4472405

Please sign in to comment.