Skip to content

Bump @actions/github from 5.1.1 to 6.0.0 #1185

Bump @actions/github from 5.1.1 to 6.0.0

Bump @actions/github from 5.1.1 to 6.0.0 #1185

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Install npm dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run tests
run: npm test