Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Update engines node max version #108

Update engines node max version

Update engines node max version #108

Workflow file for this run

name: 'Tests'
on:
push:
branches:
- main
pull_request:
paths-ignore:
- '**.mdx?'
- '**.md?'
jobs:
unit_tests:
name: 'unit_tests (node: ${{ matrix.node }})'
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16]
steps:
- uses: actions/checkout@v2
with:
repository: 'strapi/codemods'
persist-credentials: false
- uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.node }}
- name: 'Run install'
run: yarn install
- name: Run tests
run: yarn test