mirror of
https://github.com/status-im/sourcecred.git
synced 2025-02-05 17:24:24 +00:00
Build backend applications in CI (#193)
Summary: This could catch failures in build configuration or with Webpack. It’s unlikely to catch any logic errors, because no production code is run. In any case, it’s fast enough; it finishes at about the same time as `ci-test` and `check-pretty`. Test Plan: From the repository root, run `rm -r bin; yarn travis`, and note that the `bin/` directory is regenerated. wchargin-branch: ci-backend
This commit is contained in:
parent
25d0106a33
commit
eba1872495
@ -215,13 +215,13 @@ function makeTasks(mode /*: "BASIC" | "FULL" */) {
|
|||||||
cmd: ["npm", "run", "--silent", "ci-test"],
|
cmd: ["npm", "run", "--silent", "ci-test"],
|
||||||
deps: [],
|
deps: [],
|
||||||
},
|
},
|
||||||
];
|
|
||||||
const extraTasks = [
|
|
||||||
{
|
{
|
||||||
id: "backend",
|
id: "backend",
|
||||||
cmd: ["npm", "run", "--silent", "backend"],
|
cmd: ["npm", "run", "--silent", "backend"],
|
||||||
deps: [],
|
deps: [],
|
||||||
},
|
},
|
||||||
|
];
|
||||||
|
const extraTasks = [
|
||||||
{
|
{
|
||||||
id: "fetchGithubRepoTest",
|
id: "fetchGithubRepoTest",
|
||||||
cmd: ["./src/plugins/github/fetchGithubRepoTest.sh", "--no-build"],
|
cmd: ["./src/plugins/github/fetchGithubRepoTest.sh", "--no-build"],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user