mirror of
https://github.com/pnpm/action-setup.git
synced 2024-11-10 17:49:13 +08:00
60 lines
1007 B
YAML
60 lines
1007 B
YAML
name: Test Action
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
test_default_inputs:
|
|
name: Test with default inputs
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
pnpm:
|
|
- 4.11.1
|
|
|
|
steps:
|
|
- uses: checkout@v2
|
|
|
|
- name: Run the action
|
|
uses: ./
|
|
with:
|
|
version: 4.11.1
|
|
|
|
- name: 'Test: which'
|
|
run: which pnpm; which pnpx
|
|
|
|
- name: 'Test: install'
|
|
run: pnpm install
|
|
|
|
test_explicit_inputs:
|
|
name: Test with explicit inputs
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
pnpm:
|
|
- 4.11.1
|
|
|
|
steps:
|
|
- uses: checkout@v2
|
|
|
|
- name: Run the action
|
|
uses: ./
|
|
with:
|
|
version: 4.11.1
|
|
dest: /test/pnpm
|
|
bin_dest: /test/pnpm/.bin
|
|
registry: http://registry.yarnpkg.com/
|
|
|
|
- name: 'Test: which'
|
|
run: which pnpm; which pnpx
|
|
|
|
- name: 'Test: install'
|
|
run: pnpm install
|