Skip to content

Commit

Permalink
Merge pull request #27 from metonym/fix-jobs-syntax
Browse files Browse the repository at this point in the history
Specify job name to fix syntax error
  • Loading branch information
KSXGitHub committed Feb 8, 2022
2 parents 93bd5a1 + 45d9c91 commit e13928c
Showing 1 changed file with 38 additions and 35 deletions.
73 changes: 38 additions & 35 deletions README.md
Expand Up @@ -54,12 +54,13 @@ on:
- pull_request

jobs:
runs-on: ubuntu-latest
install:
runs-on: ubuntu-latest

steps:
- uses: pnpm/action-setup@v2.0.1
with:
version: 6.0.2
steps:
- uses: pnpm/action-setup@v2.0.1
with:
version: 6.0.2
```

### Install pnpm and a few npm packages
Expand All @@ -70,18 +71,19 @@ on:
- pull_request

jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- uses: pnpm/action-setup@v2.0.1
with:
version: 6.0.2
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- args: [--global, gulp, prettier, typescript]
install:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- uses: pnpm/action-setup@v2.0.1
with:
version: 6.0.2
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- args: [--global, gulp, prettier, typescript]
```

### Use cache to reduce installation time
Expand All @@ -92,24 +94,25 @@ on:
- pull_request

jobs:
runs-on: ubuntu-latest

steps:
build:
- uses: actions/checkout@v2

- name: Cache pnpm modules
uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/action-setup@v2.0.1
with:
version: 6.0.2
run_install: true
cache-and-install:
runs-on: ubuntu-latest

steps:
build:
- uses: actions/checkout@v2

- name: Cache pnpm modules
uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/action-setup@v2.0.1
with:
version: 6.0.2
run_install: true
```

**Note:** You don't need to run `pnpm store prune` at the end; post-action has already taken care of that.
Expand Down

0 comments on commit e13928c

Please sign in to comment.