discord_bot/.github/workflows/CI.yml
SileNce5k 0a7f8b9ba3
All checks were successful
CI / CI (push) Successful in 1m22s
Add permissions to workflow
Mainly to get rid of code scanning alert lol
2025-05-04 04:22:15 +02:00

21 lines
No EOL
338 B
YAML

name: CI
on: [push]
permissions:
contents: read
jobs:
CI:
runs-on: node
name: CI
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 'latest'
- name: install dependencies
run: npm install
- name: run tests
run: npm test