Skip to content
Merged
Show file tree
Hide file tree
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
14 changes: 10 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version: 2.1
jobs:
lint:
docker:
- image: circleci/node:latest
- image: cimg/node:14.13.1
steps:
- checkout
- run:
Expand All @@ -21,19 +21,25 @@ jobs:

unit-tests:
docker:
- image: circleci/node:latest
- image: cimg/node:14.13.1
steps:
- checkout
- run:
name: Install Firefox related dependencies
command: |
sudo add-apt-repository ppa:ubuntu-mozilla-daily/ppa
sudo apt update
sudo apt install firefox-trunk
- run:
name: Install Javascript dependencies
command: npm install
- run:
name: Run unit tests
command: npm run test
command: export PATH=.:$PATH && npm run test

check-size:
docker:
- image: circleci/node:latest
- image: cimg/node:14.13.1
steps:
- checkout
- run:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,6 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# Generated web-extension file for Firefox
*.xpi
4 changes: 0 additions & 4 deletions .mocharc.json

This file was deleted.

Loading