Skip to content

chore(action): update actions/checkout action to v4.1.3 #1389

chore(action): update actions/checkout action to v4.1.3

chore(action): update actions/checkout action to v4.1.3 #1389

Workflow file for this run

name: Node.js CI
'on':
push:
branches:
- master
- beta
- renovate/**
pull_request:
types:
- opened
- synchronize
env:
FORCE_COLOR: 1
NPM_CONFIG_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- name: Setup node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version-file: .nvmrc
cache: npm
- run: npm clean-install
- run: npm test
trigger-release:
runs-on: ubuntu-latest
if: github.event_name == 'push'
needs: []
steps:
- uses: octokit/request-action@v2.x
with:
route: >-
POST
/repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches
owner: pragmatic-divops
repo: eslint-config-cypress
ref: ${{ github.ref }}
workflow_id: release.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}