Skip to content

Commit

Permalink
Simplify GitHub Action workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasbynens committed Jan 7, 2022
1 parent d1e8660 commit 3a2fc92
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 60 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/build.yml
Expand Up @@ -14,14 +14,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm

- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
node-version-file: '.nvmrc'

- name: Install dependencies
run: |
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/disable-anniversary-pack.yml
Expand Up @@ -16,14 +16,10 @@ jobs:
ref: ${{ github.head_ref }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm

- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
node-version-file: '.nvmrc'

- name: Install dependencies
run: npm install
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/disable-lightbearer-pack.yml
Expand Up @@ -16,14 +16,10 @@ jobs:
ref: ${{ github.head_ref }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm

- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
node-version-file: '.nvmrc'

- name: Install dependencies
run: npm install
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/enable-anniversary-pack.yml
Expand Up @@ -16,14 +16,10 @@ jobs:
ref: ${{ github.head_ref }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm

- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
node-version-file: '.nvmrc'

- name: Install dependencies
run: npm install
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/enable-lightbearer-pack.yml
Expand Up @@ -16,14 +16,10 @@ jobs:
ref: ${{ github.head_ref }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm

- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
node-version-file: '.nvmrc'

- name: Install dependencies
run: npm install
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/enable-orcsoberfest-island-pack.yml
Expand Up @@ -20,14 +20,10 @@ jobs:
ref: ${{ github.head_ref }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm

- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
node-version-file: '.nvmrc'

- name: Install dependencies
run: npm install
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/enable-percht-island.yml
Expand Up @@ -19,14 +19,10 @@ jobs:
ref: ${{ github.head_ref }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm

- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
node-version-file: '.nvmrc'

- name: Install dependencies
run: npm install
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/import-markers-lee.yml
Expand Up @@ -13,14 +13,10 @@ jobs:
ref: ${{ github.head_ref }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm

- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
node-version-file: '.nvmrc'

- name: Install dependencies
run: npm install
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/import-markers-mathias.yml
Expand Up @@ -13,14 +13,10 @@ jobs:
ref: ${{ github.head_ref }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm

- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
node-version-file: '.nvmrc'

- name: Install dependencies
run: npm install
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/import-markers-pieter.yml
Expand Up @@ -13,14 +13,10 @@ jobs:
ref: ${{ github.head_ref }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm

- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
node-version-file: '.nvmrc'

- name: Install dependencies
run: npm install
Expand Down

0 comments on commit 3a2fc92

Please sign in to comment.