Skip to content

test node version #1328

test node version

test node version #1328

Workflow file for this run

name: next-drupal
on:
push:
branches:
- main
- test-ci-versions
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18.18.2'
- name: Check Node.js version
run: node -v
- name: Install packages
run: yarn
- name: Run tests
run: yarn test
env:
DRUPAL_BASE_URL: ${{ secrets.DRUPAL_BASE_URL }}
DRUPAL_USERNAME: ${{ secrets.DRUPAL_USERNAME }}
DRUPAL_PASSWORD: ${{ secrets.DRUPAL_PASSWORD }}
DRUPAL_CLIENT_ID: ${{ secrets.DRUPAL_CLIENT_ID }}
DRUPAL_CLIENT_SECRET: ${{ secrets.DRUPAL_CLIENT_SECRET }}