Skip to content

Bump @actions/github from 6.0.1 to 7.0.0 #13

Bump @actions/github from 6.0.1 to 7.0.0

Bump @actions/github from 6.0.1 to 7.0.0 #13

Workflow file for this run

name: Tests
on:
workflow_dispatch: # Adds the Web trigger
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-slim
steps:
- name: Check out repo
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "24"
cache: "npm"
- name: Install dependencies
run: make deps
- name: Run tests
# - Runs the tests
# - Checks for TypeScript warnings
# - Confirms that dist/index.js is current
run: make test