Revert "devops: add docs & lint github workflow"
This breaks YML syntax in GH workflows
This commit is contained in:
parent
7ec7f72a74
commit
0de625d3ac
3
.github/workflows/chromium-linux.yml
vendored
3
.github/workflows/chromium-linux.yml
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
name: tests: Linux + CR
|
name: Chromium Linux Tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
@ -32,6 +32,7 @@ jobs:
|
||||||
- name: npm install, build, and test
|
- name: npm install, build, and test
|
||||||
run: |
|
run: |
|
||||||
npm install
|
npm install
|
||||||
|
npm run build
|
||||||
xvfb-run --auto-servernum npm run ctest
|
xvfb-run --auto-servernum npm run ctest
|
||||||
env:
|
env:
|
||||||
CI: true
|
CI: true
|
||||||
|
|
|
||||||
2
.github/workflows/chromium-windows.yml
vendored
2
.github/workflows/chromium-windows.yml
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
name: tests: Win + CR
|
name: Chromium Windows Tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
|
||||||
37
.github/workflows/docs-and-lint.yml
vendored
37
.github/workflows/docs-and-lint.yml
vendored
|
|
@ -1,37 +0,0 @@
|
||||||
name: docs & lint
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
|
|
||||||
runs-on: ubuntu-18.04
|
|
||||||
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
node-version: [12.x]
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Use Node.js ${{ matrix.node-version }}
|
|
||||||
uses: actions/setup-node@v1
|
|
||||||
with:
|
|
||||||
node-version: ${{ matrix.node-version }}
|
|
||||||
- name: install required packages
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install libgbm-dev
|
|
||||||
sudo apt-get install xvfb
|
|
||||||
|
|
||||||
- name: npm install, build, and test
|
|
||||||
run: |
|
|
||||||
npm install
|
|
||||||
npm run lint
|
|
||||||
env:
|
|
||||||
CI: true
|
|
||||||
2
.github/workflows/firefox-linux.yml
vendored
2
.github/workflows/firefox-linux.yml
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
name: tests: Linux + FF
|
name: Firefox Linux Tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
|
||||||
2
.github/workflows/firefox-windows.yml
vendored
2
.github/workflows/firefox-windows.yml
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
name: tests: Win + FF
|
name: Firefox Windows Tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
|
||||||
2
.github/workflows/webkit-linux.yml
vendored
2
.github/workflows/webkit-linux.yml
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
name: tests: Linux + WK
|
name: WebKit Linux Tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
|
||||||
2
.github/workflows/webkit-windows.yml
vendored
2
.github/workflows/webkit-windows.yml
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
name: tests: Win + WK
|
name: WebKit Windows Tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue