Skip to content

Commit

Permalink
Multi-language travis
Browse files Browse the repository at this point in the history
  • Loading branch information
markstur committed Jan 12, 2022
1 parent c136faf commit 289d809
Showing 1 changed file with 18 additions and 7 deletions.
25 changes: 18 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
language: python
python:
- "3.9"
install:
- pip install -r requirements.txt
- pip install flake8
- npm install
script:
- flake8 *.py
- ./node_modules/.bin/eslint static/scripts/script.js

jobs:
include:
- language: python
python: 3.9
install:
- pip install -r requirements.txt
- pip install flake8
- npm install
script:
- flake8 *.py
- language: node_js
node_js:
- lts/*
install:
- npm install
script:
- ./node_modules/.bin/eslint static/scripts/script.js

0 comments on commit 289d809

Please sign in to comment.