Fix some nodejs nits (#271)
This commit is contained in:
parent
e9c9c912f6
commit
60d8402e19
|
@ -8,7 +8,7 @@ on:
|
||||||
- main
|
- main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
tests:
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# For a less verbose yarn.
|
# For a less verbose yarn
|
||||||
YARN = yarn --silent
|
YARN = yarn --silent
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
|
@ -73,7 +73,7 @@ publish: build bundle
|
||||||
# Run ref-tests in linux environment for cross-compatability check
|
# Run ref-tests in linux environment for cross-compatability check
|
||||||
.PHONY: linux-test
|
.PHONY: linux-test
|
||||||
linux-test: build
|
linux-test: build
|
||||||
# Docker cannot copy from outside this dir
|
@# Docker cannot copy from outside this dir
|
||||||
@cp -r ../../tests ref-tests
|
@cp -r ../../tests ref-tests
|
||||||
@docker build -t "linux-test" .
|
@docker build -t "linux-test" .
|
||||||
@docker logs --follow `docker run -d linux-test`
|
@docker logs --follow `docker run -d linux-test`
|
||||||
|
|
Loading…
Reference in New Issue