Skip to content

Bump actions/setup-node from 6 to 7 in the actions group across 1 directory #321

Bump actions/setup-node from 6 to 7 in the actions group across 1 directory

Bump actions/setup-node from 6 to 7 in the actions group across 1 directory #321

name: Actions Version File Tests
on:
pull_request:
jobs:
setup-lando-actions-file-test:
runs-on: ${{ matrix.os }}
env:
LANDO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-24.04
node-version:
- '20'
lando-version-file:
- '.lando-version'
- '.tool-versions'
steps:
- name: Checkout code
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies and prepare
run: |
npm clean-install --prefer-offline --frozen-lockfile
npm run prepare
- name: Setup Lando version ${{ matrix.lando-version-file }}
uses: ./
with:
lando-version-file: ${{ matrix.lando-version-file }}