feat: add player/user limits, token login, flags fix #39
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: Check pre-release | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
Static: | |
name: "Check branch does not have a pre-release file in changeset" | |
runs-on: ubuntu-latest | |
env: | |
MODULAR_LOGGER_DEBUG: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Check that the file .changeset/pre.json is not present" | |
run: "! test -f .changeset/pre.json" |