Skip to content

Update Actions to all have names #61

Update Actions to all have names

Update Actions to all have names #61

Workflow file for this run

name: Test
on: [ push ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm test
env:
TWITCH_ID: ${{ secrets.TWITCH_ID }}
TWITCH_SECRET: ${{ secrets.TWITCH_SECRET }}