Skip to content

More tests

More tests #4

Workflow file for this run

name: Testing
on:
push:
branches:
- main
- master
pull_request: {}
jobs:
aa:
name: 'actions/setup-node (default)'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- run: node --version
a:
name: 'actions/setup-node (with node-version-file: package.json)'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: package.json
- run: node --version
b:
name: 'wyvox/action-setup-pnpm'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- run: node --version
bb:
name: 'wyvox/action-setup-pnpm (no volta config - new feature branch)'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# clear the package.json
- run: '"{}" > package.json'
- uses: wyvox/action-setup-pnpm@change-default-node-version-file-to-package.json
- run: node --version
bb:

Check failure on line 47 in .github/workflows/testing.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/testing.yml

Invalid workflow file

You have an error in your yaml syntax on line 47
name: 'wyvox/action-setup-pnpm (with volta config - new feature branch)'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@change-default-node-version-file-to-package.json
- run: node --version
c:
name: 'wyvox/action'
runs-on: ubuntu-latest
steps:
- uses: wyvox/action@v1
- run: node --version