Skip to content

Commit

Permalink
ci(GH Actions): Clean up action runs
Browse files Browse the repository at this point in the history
  • Loading branch information
WeirdAlex03 committed Oct 14, 2022
1 parent a2624cf commit 16e4c42
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/pr-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on: pull_request

jobs:
build:
name: Prepare environment and build
name: Build

runs-on: ubuntu-latest

Expand Down Expand Up @@ -42,10 +42,9 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Prepare environment
run: |
Expand All @@ -67,6 +66,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
cache: 'npm'
- name: Prepare environment
run: npm ci
- name: Run formatter
Expand Down

0 comments on commit 16e4c42

Please sign in to comment.