diff options
author | Louis Pilfold <louis@lpil.uk> | 2022-01-04 18:04:20 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2022-01-04 18:07:05 +0000 |
commit | dcd2aba71e3383e1af5b607506d26c33ef33a09f (patch) | |
tree | 3eae8e572bc878418217dd96f4e06c093b770099 | |
parent | d377e8ba146c4c597f7cf2041d4d5186a0977b50 (diff) | |
download | gleam_stdlib-dcd2aba71e3383e1af5b607506d26c33ef33a09f.tar.gz gleam_stdlib-dcd2aba71e3383e1af5b607506d26c33ef33a09f.zip |
Use build tool for JS on CI
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cea9c81..90cb036 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,6 @@ jobs: - uses: actions/setup-node@v2 with: node-version: "16.0.0" - - run: gleam test - - run: npm test - # - run: gleam format --check src test + - run: gleam test --target erlang + - run: gleam test --target javascript + - run: gleam format --check src test |