Skip to content

Commit

Permalink
Small CI update
Browse files Browse the repository at this point in the history
  • Loading branch information
ifiokjr committed Nov 6, 2020
1 parent bdaa6af commit 4c74c36
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/actions/pnpm/action.yml
Expand Up @@ -8,13 +8,13 @@ inputs:
version: # id of input
description: 'The version to use'
required: false
default: 5.10.2
default: 5.10.4

runs:
using: 'composite'
steps:
- name: install pnpm
run: npm install pnpm@${{ inputs.version }} -g
run: npm i -g pnpm@${{ inputs.version }}
shell: bash

- name: setup pnpm config
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -9,7 +9,7 @@ on:
- main
- next

pull_request_target:
pull_request:
branches:
- main
- next
Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions support/azure/pipeline-install.yml
@@ -1,10 +1,10 @@
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '14.x'
displayName: 'install node'

- bash: npm install pnpm@5.4.9 -g
- bash: npm i -g pnpm@5.10.4
displayName: 'install pnpm'

- bash: pnpm config set store-dir $PNPM_CACHE_FOLDER
Expand Down

0 comments on commit 4c74c36

Please sign in to comment.