Skip to content

Bump actions/checkout from 2.3.4 to 7.0.0 #1028

Bump actions/checkout from 2.3.4 to 7.0.0

Bump actions/checkout from 2.3.4 to 7.0.0 #1028

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v7.0.0
- name: Check file formatting against EditorConfig
uses: editorconfig-checker/action-editorconfig-checker@v1.0.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.5
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm test
env:
CI: true
merge-me:
name: Auto-merge dependency updates
needs: test
runs-on: ubuntu-latest
steps:
- uses: ridedott/merge-me-action@v2.2.18
with:
GITHUB_LOGIN: 'dependabot[bot]'
# We need to use a custom token to trigger a build for the merge
# Using the default token doesn't do this.
GITHUB_TOKEN: ${{ secrets.GH_MERGE_TOKEN }}
MERGE_METHOD: MERGE