Skip to content

chore(deps): update actions/checkout action to v4.1.0 #4783

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

chore(deps): update actions/checkout action to v4.1.0 #4783

Workflow file for this run

name: Node CI
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*, latest]
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.8.1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm test
env:
SLACK_WEBHOOK_URL: https://example.com
CI: true
- uses: coverallsapp/github-action@3dfc5567390f6fa9267c0ee9c251e4c8c3f18949 # v2.2.3
with:
github-token: ${{ secrets.github_token }}