Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@ jobs:

build_and_test:
docker:
- image: cimg/node:14.19
- image: cimg/python:3.10-node # Need python for the node-sass build dependency. Uses Node LTS
working_directory: ~/FirefoxColor
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
- run: sudo npm install -g npm@latest
- run: npm ci
- run: bash ./gen-environment.sh >> $BASH_ENV
- run: npm run lint
Expand All @@ -31,7 +30,7 @@ jobs:

deploy_development:
docker:
- image: cimg/node:14.19
- image: cimg/node:lts
working_directory: ~/FirefoxColor
steps:
- attach_workspace:
Expand Down