Bump eslint from 8.40.0 to 8.45.0 #635
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
# Controls when the workflow will run | |
on: | |
# Trigger the workflow on all pushes to main, except on tag creation | |
push: | |
branches: | |
- main | |
tags-ignore: | |
- "**" | |
# Trigger the workflow on all pull requests | |
pull_request: ~ | |
# Allow workflow to be dispatched on demand | |
workflow_dispatch: ~ | |
jobs: | |
# Calls a reusable CI NodeJS workflow to qa & test the current repository. | |
# It will install dependencies and produce a code coverage report on success. | |
ci: | |
name: ci | |
uses: ecmwf-actions/reusable-workflows/.github/workflows/ci-node.yml@v2 | |
with: | |
codecov_upload: true | |
notify_teams: true | |
secrets: | |
incoming_webhook: ${{ secrets.MS_TEAMS_INCOMING_WEBHOOK }} |