Compare commits

..

1 Commits

Author SHA1 Message Date
raucao 8c2879063c Migrate to Gitea Actions
CI / Lint (pull_request) Successful in 1m8s
CI / Test (pull_request) Failing after 2m3s
2026-07-25 19:42:05 +02:00
2 changed files with 6 additions and 3 deletions
+4 -2
View File
@@ -32,12 +32,14 @@ jobs:
test:
name: "Test"
runs-on: ubuntu-latest
container:
image: cypress/browsers:node16.18.0-chrome107-ff106-edge
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 16
- name: Install Dependencies
run: npm ci
+2 -1
View File
@@ -15,7 +15,8 @@
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint .",
"start": "ember serve",
"test": "ember test",
"test": "npm-run-all lint:* test:*",
"test:ember": "ember test",
"start:local": "WEB3_PROVIDER_URL=http://localhost:8545 WEB3_CHAIN_ID=1337 WEB3_NETWORK_NAME='Hardhat Devchain' ember serve",
"build": "ember build --environment=production",
"build-prod": "rm -rf release/* && ember build -prod --output-path release",