Skip to content

Commit 354b5fa

Browse files
committed
Move standardJS into CI workflow
1 parent e0badf8 commit 354b5fa

File tree

2 files changed

+11
-16
lines changed

2 files changed

+11
-16
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,17 @@ jobs:
1717
- run: python setup.py sdist bdist_wheel
1818
- run: python -m twine check dist/*
1919

20+
standardJS:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v1
24+
- name: Set up Node
25+
uses: actions/setup-node@v1
26+
- name: Install Standard
27+
run: npm install -g standard
28+
- name: Run standard
29+
run: standard
30+
2031
pytest:
2132
runs-on: ubuntu-latest
2233
strategy:

.github/workflows/standard.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)