Make mechanism of moving users to the beta feature, separate between games saved on frontend, games saved on backend and games shared #1360
Workflow file for this run
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: TypeScript Check | |
on: | |
pull_request: | |
types: [opened, reopened, edited] | |
jobs: | |
# Test job | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install Dependencies | |
run: | | |
yarn install | |
- name: Build Project | |
run: | | |
node .github/scripts/generate-metadata.js | |
yarn tsc --noEmit |