improve route handling, add seer/evo prod #14
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: CI | |
on: | |
push: {} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- run: npm install -g @microsoft/rush | |
- run: git clone https://github.com/arkenrealms/arken.git | |
- run: cd arken | |
- run: rush install | |
- run: rush update | |
- run: rushx build | |
- run: rushx lint | |
- run: rushx test | |
test_trpc_vnext: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- run: npm install -g @microsoft/rush | |
- run: rush add -p @trpc/server@next | |
- run: rushx test e2e |