Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Actions: Clean up #25318

Merged
merged 1 commit into from
Jan 25, 2023
Merged
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
21 changes: 10 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,21 @@ permissions:
contents: read

jobs:

lint:
name: "Linting"
name: "Lint testing"
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Install node
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: 16
cache: 'npm'
- name: Install packages
run: npm ci

- name: === Linting ===
- name: === Lint testing ===
run: npm run lint

unit:
Expand All @@ -40,7 +39,7 @@ jobs:
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Install node
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: 16
Expand All @@ -59,6 +58,7 @@ jobs:
name: "E2E testing"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
CI: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
env:
Expand All @@ -67,7 +67,7 @@ jobs:
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Install node
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: 16
Expand All @@ -76,26 +76,25 @@ jobs:
run: |
npm ci
npm ci --prefix test
sudo apt-get install xvfb
- name: Build
run: npm run build

- name: === E2E testing ===
run: xvfb-run --auto-servernum npm run test-e2e
run: npm run test-e2e

e2e-cov:
name: "Ready for release"
name: "Examples ready for release"
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Install node
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: 16
cache: 'npm'
- name: Install packages
run: npm ci

- name: === Ready for release ===
- name: === Examples ready for release ===
run: npm run test-e2e-cov