Skip to content

Commit

Permalink
trying to fix CI for e2e tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Jun 6, 2024
1 parent a6a8083 commit a05f11e
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,19 @@ serve-backend: deps
test:
go test ./...

test-js:

.PHONY: deps-js
deps-js:
cd js && yarn install

.PHONY: test-js
test-js: deps-js
cd js && yarn run e2e

# Steps related to building and publishing fasten-sources-js library.

build-js:
.PHONY: build-js
build-js: deps-js
go install github.com/gzuidhof/tygo@latest
tygo generate
npm install -g typescript
cd js && yarn install
cd js && tsc

0 comments on commit a05f11e

Please sign in to comment.