Skip to content

feat: add toy character-level transformer language model #95

feat: add toy character-level transformer language model

feat: add toy character-level transformer language model #95

Workflow file for this run

name: CI
on:
pull_request:
branches:
- 'main'
jobs:
verify:
name: Verify
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Run Checks
env:
CI: true
run: |
npm install
npm run ci