We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaa7f88 commit 2f3ccbfCopy full SHA for 2f3ccbf
2 files changed
.github/workflows/deploy.yaml
@@ -16,10 +16,11 @@ jobs:
16
with:
17
filters: |
18
logic-system:
19
- - 'apps/logic-system/**/*.ts'
+ - 'apps/logic-system/src/**/*.ts'
20
21
deploy:
22
runs-on: ubuntu-latest
23
+ needs: changes
24
container: ghcr.io/railwayapp/cli:latest
25
environment: ${{ github.ref == 'refs/heads/main' && 'production' || 'dev' }}
26
env:
apps/logic-system/src/index.ts
@@ -11,6 +11,7 @@ const app = new App(
11
12
app.start();
13
14
+
15
//@ts-ignore
BigInt.prototype.toJSON = function () {
return this.toString();
0 commit comments