mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Added testing step to GH deploy action.
This commit is contained in:
parent
309267a4f8
commit
bd20d96582
5
.github/workflows/deploy.yml
vendored
5
.github/workflows/deploy.yml
vendored
@ -26,6 +26,11 @@ jobs:
|
||||
with:
|
||||
args: install
|
||||
|
||||
- name: Test
|
||||
uses: CultureHQ/actions-yarn@v1.0.1
|
||||
with:
|
||||
args: test
|
||||
|
||||
- name: Build
|
||||
uses: CultureHQ/actions-yarn@v1.0.1
|
||||
with:
|
||||
|
9
.github/workflows/tests.yml
vendored
9
.github/workflows/tests.yml
vendored
@ -27,12 +27,17 @@ jobs:
|
||||
with:
|
||||
args: install
|
||||
|
||||
- name: Check formatting and lint
|
||||
- name: Lint
|
||||
uses: CultureHQ/actions-yarn@v1.0.1
|
||||
with:
|
||||
args: lint
|
||||
|
||||
- name: Run test suite
|
||||
- name: Check formatting
|
||||
uses: CultureHQ/actions-yarn@v1.0.1
|
||||
with:
|
||||
args: check_formatting
|
||||
|
||||
- name: Test
|
||||
uses: CultureHQ/actions-yarn@v1.0.1
|
||||
with:
|
||||
args: test
|
||||
|
12
package.json
12
package.json
@ -18,16 +18,18 @@
|
||||
},
|
||||
"scripts": {
|
||||
"start": "webpack-dev-server --config webpack.dev.js",
|
||||
"check": "yarn lint && yarn check_formatting",
|
||||
"lint": "echo 'Linting...' && eslint \"{src,assets_generation,test}/**/*.{ts,tsx}\" && echo 'No linting issues.'",
|
||||
"check_formatting": "prettier --check \"{src,assets_generation,test}/**/*.{ts,tsx}\"",
|
||||
"test": "jest",
|
||||
"build": "yarn build_bundle",
|
||||
"build_bundle": "webpack --config webpack.prod.js",
|
||||
"build_prs_rs": "wasm-pack build src/core/data_formats/compression/prs",
|
||||
"build_prs_rs_browser": "yarn build_prs_rs -t bundler && yarn upgrade prs-rs",
|
||||
"build_prs_rs_testing": "yarn build_prs_rs -t nodejs -d 'test/pkg'",
|
||||
"build_bundle": "webpack --config webpack.prod.js",
|
||||
"build": "yarn build_bundle",
|
||||
"test": "jest",
|
||||
"update_generic_data": "ts-node --project=tsconfig-scripts.json assets_generation/update_generic_data.ts",
|
||||
"update_ephinea_data": "ts-node --project=tsconfig-scripts.json assets_generation/update_ephinea_data.ts",
|
||||
"quest_stats": "ts-node --project=tsconfig-scripts.json assets_generation/quest_stats.ts",
|
||||
"lint": "prettier --check \"{src,assets_generation,test}/**/*.{ts,tsx}\" && echo Linting... && eslint \"{src,assets_generation,test}/**/*.{ts,tsx}\" && echo All code passes the prettier and eslint checks."
|
||||
"quest_stats": "ts-node --project=tsconfig-scripts.json assets_generation/quest_stats.ts"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fortawesome/fontawesome-free": "^5.13.1",
|
||||
|
Loading…
Reference in New Issue
Block a user