cypress-io / docker-image-not-found

If you want to do something only if the Docker Hub does not have an image
0 stars 2 forks source link

CI based on unsupported Node.js 12 #2

Open MikeMcC399 opened 2 months ago

MikeMcC399 commented 2 months ago

Issue

The CircleCI workflow uses the CircleCI executor

jobs:
  build:
    executor:
      name: node/default
      tag: '12'
    steps:
      - checkout
      - node/with-cache:
          steps:
            - run: npm ci
      - run: npm run lint
      - run: npm test

and

orbs:
  node: circleci/node@1.1
version: 2.1

This references the deprecated Docker image circleci/node:12 using Node.js 12.22.7

Node.js 12 entered end-of-life in April 2022.