blob: cea9c818069efb8f036c613a7f9830e06bf9b226 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
name: CI
on:
push:
branches:
- "main"
- "v*.*.*"
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.0.0
- uses: erlef/setup-beam@v1.9.0
with:
otp-version: "23.2"
gleam-version: "0.19.0-rc1"
- uses: actions/setup-node@v2
with:
node-version: "16.0.0"
- run: gleam test
- run: npm test
# - run: gleam format --check src test
|