We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0badf8 commit 354b5faCopy full SHA for 354b5fa
.github/workflows/ci.yml
@@ -17,6 +17,17 @@ jobs:
17
- run: python setup.py sdist bdist_wheel
18
- run: python -m twine check dist/*
19
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
+
31
pytest:
32
runs-on: ubuntu-latest
33
strategy:
.github/workflows/standard.yml
0 commit comments