Skip to content

Commit

Permalink
temporary fix for vercel/turbo#1749
Browse files Browse the repository at this point in the history
  • Loading branch information
vugar committed Aug 27, 2022
1 parent 3c48fb2 commit 336729c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,29 @@ jobs:
setup:
working_directory: ~/youtube-webapp-turborepo
docker:
- image: circleci/node:16-browsers
- image: circleci/node:16-browsers
steps:
- checkout
- restore_cache:
key: v1-deps-{{ checksum "package-lock.json" }}
key: v1-deps-{{ checksum "package-lock.json" }}
- run:
name: install-dependencies
command: npm ci
command: npm install
- save_cache:
key: v1-deps-{{ checksum "package-lock.json" }}
paths:
- node_modules
paths:
- node_modules
lint:
working_directory: ~/youtube-webapp-turborepo
docker:
- image: circleci/node:16-browsers
steps:
- checkout
- restore_cache:
key: v1-deps-{{ checksum "package-lock.json" }}
key: v1-deps-{{ checksum "package-lock.json" }}
- run:
name: install-dependencies
command: npm ci
command: npm install
- run:
name: angular-lint
command: npm run lint
Expand All @@ -36,7 +36,7 @@ jobs:
steps:
- checkout
- restore_cache:
key: v1-deps-{{ checksum "package-lock.json" }}
key: v1-deps-{{ checksum "package-lock.json" }}
- run:
name: angular-build
command: npm run build
Expand All @@ -45,7 +45,7 @@ workflows:
version: 2
lint_and_build:
jobs:
- setup
- setup
- lint:
requires:
- setup
Expand Down

0 comments on commit 336729c

Please sign in to comment.