Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to eslint flat config #99

Closed
wants to merge 2 commits into from

switch to flat config

aa5ade1
Select commit
Loading
Failed to load commit list.
Closed

Switch to eslint flat config #99

switch to flat config
aa5ade1
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Apr 25, 2024 in 2m 42s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #99 Bump eslint from 8.57.0 to 9.1.1.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has three jobs, running in two sequential stages.

Stage 1: lint

This stage passed.

Job Node.js OS State
267.1 lint lts\/\* Linux passed
267.2 lint:css lts\/\* Linux passed

Stage 2: build

This stage passed.

Job Node.js OS State
267.3 build lts\/\* Linux passed

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Focal)
Node.js Version lts/*
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "branches": {
    "only": [
      "main"
    ]
  },
  "node_js": [
    "lts/*"
  ],
  "stages": [
    {
      "name": "lint"
    },
    {
      "name": "build"
    }
  ],
  "jobs": {
    "include": [
      {
        "stage": "lint",
        "name": "lint",
        "script": [
          "npm run lint"
        ]
      },
      {
        "stage": "lint",
        "name": "lint:css",
        "script": [
          "npm run lint:css"
        ]
      },
      {
        "stage": "build",
        "name": "build",
        "script": [
          "npm run build"
        ],
        "deploy": [
          {
            "provider": "pages",
            "strategy": "git",
            "skip_cleanup": true,
            "local_dir": "./dist",
            "fqdn": "pvta-public-messages.admin.umass.edu",
            "email": "[email protected]",
            "name": "umts-buildbot-public-message-board",
            "keep_history": true,
            "on": {
              "branch": [
                "main"
              ]
            },
            "token": "$GITHUB_TOKEN"
          }
        ]
      }
    ]
  }
}