Skip to content

Commit

Permalink
Collapse actions matrix (#2397)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacogr authored Mar 16, 2020
1 parent 9114bdd commit a07ff4e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 33 deletions.
32 changes: 8 additions & 24 deletions .github/workflows/pr-any.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,11 @@ jobs:
lint:
name: Linting
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: '12.x'
- name: lint
run: |
yarn install --immutable | grep -v 'YN0013'
Expand All @@ -22,15 +18,11 @@ jobs:
test:
name: Testing
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: '12.x'
- name: test
run: |
yarn install --immutable | grep -v 'YN0013'
Expand All @@ -39,15 +31,11 @@ jobs:
build_code:
name: Build Code
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: '12.x'
- name: build
run: |
yarn install --immutable | grep -v 'YN0013'
Expand All @@ -56,15 +44,11 @@ jobs:
build_i18n:
name: Build i18n
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: '12.x'
- name: build
run: |
yarn install --immutable | grep -v 'YN0013'
Expand Down
11 changes: 2 additions & 9 deletions .github/workflows/push-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,13 @@ jobs:
name: Build Code
if: "! contains(github.event.head_commit.message, '[CI Skip]')"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
with:
token: ${{ secrets.GH_PAT }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: '12.x'
- name: build
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
Expand All @@ -35,9 +31,6 @@ jobs:
name: Dummy
if: "contains(github.event.head_commit.message, '[CI Skip]')"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- name: dummy
run: |
Expand Down

0 comments on commit a07ff4e

Please sign in to comment.