Revisions
-
kenberkeley revised this gist
May 2, 2020 . No changes.There are no files selected for viewing
-
kenberkeley created this gist
May 2, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,42 @@ ## References: # https://git.io/Jf3l9 # https://circleci.com/docs/2.0/yarn/ # https://circleci.com/docs/2.0/caching/#yarn-node # https://circleci.com/orbs/registry/orb/circleci/node # https://discuss.circleci.com/t/circleci-2-1-config-overview/26057 version: 2.1 orbs: node: circleci/node@2.0.3 commands: setup-node-and-yarn-install-with-cache: steps: - node/install: install-yarn: true node-version: latest - node/install-packages: pkg-manager: yarn cache-key: yarn.lock jobs: lint-and-test: executor: name: node/default steps: - checkout - setup-node-and-yarn-install-with-cache - run: name: Lint command: npm run lint - run: name: Check types command: npm run check-types - run: name: Run tests command: npm run test workflows: run-ci: jobs: - lint-and-test