diff options
author | Michał Łępicki <michallepicki@users.noreply.github.com> | 2022-02-23 22:20:10 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2022-02-24 13:17:37 +0000 |
commit | ab2ff059c86fcdd596396982ee3383b878fc3baf (patch) | |
tree | 303950f3557ad9e7185c48429327130dd3e0823e /.github/workflows | |
parent | 207d52d8feead7f83bca3df35a008d73e94b2207 (diff) | |
download | javascript-ab2ff059c86fcdd596396982ee3383b878fc3baf.tar.gz javascript-ab2ff059c86fcdd596396982ee3383b878fc3baf.zip |
Enable CI; Bump Gleam version
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..3b5a731 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,22 @@ +name: test + +on: + push: + branches: + - main + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.0.0 + - uses: erlef/setup-beam@v1 + with: + otp-version: false + gleam-version: '0.20.0' + - uses: actions/setup-node@v2 + with: + node-version: '16' + - run: gleam format --check src test + - run: gleam test |