add /skills player
command (#225)
#80
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: OAF | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Enable corepack | |
run: corepack enable | |
- name: Install modules | |
run: yarn install --immutable | |
- name: Generate prisma types | |
run: yarn workspace oaf run prisma generate | |
- name: Run tests | |
run: yarn workspace oaf run test --pool=forks | |
- name: Run type check | |
run: yarn workspace oaf run tsc |