26 lines
498 B
YAML
26 lines
498 B
YAML
name: Main@node 21
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened, synchronize]
|
|
push:
|
|
branches-ignore:
|
|
- 'gh-pages'
|
|
- 'dependabot/**'
|
|
|
|
jobs:
|
|
test-main-21:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
node-version: 21
|
|
env:
|
|
NPM_CONFIG_ENGINE_STRICT: 'false'
|
|
|
|
- name: Core tests
|
|
uses: ./.github/actions/core-tests
|