Skip to content

refactor(useTeamValues): Extract function to build team values #980

refactor(useTeamValues): Extract function to build team values

refactor(useTeamValues): Extract function to build team values #980

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "18.14.0"
- name: Install modules
run: yarn install
- name: Run lint for the client
run: yarn workspace ogre-client lint
- name: Run prettier for the client
run: yarn workspace ogre-client prettier:check
- name: Run type-check for the client
run: yarn workspace ogre-client check-type
- name: Run tests for the client
run: yarn workspace ogre-client test:no-watch
- name: Run lint for the server
run: yarn workspace ogre-server lint
- name: Run prettier for the server
run: yarn workspace ogre-server prettier:check
- name: Run type-check for the server
run: yarn workspace ogre-server check-type