Skip to content

Update to Node.js 20.x #103

Update to Node.js 20.x

Update to Node.js 20.x #103

Workflow file for this run

name: Test
on:
push:
tags-ignore:
- '**'
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use desired version of Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Npm install and build
run: |
npm ci
npm run build
- name: Composer install and set phpcs
run: |
composer install
composer phpcs
- name: Running lint check
run: npm run lint