deno.land / x / pasta@0.0.6 / .github / workflows / ci.yml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
on: push: branches: [main] pull_request:
jobs: test: name: Run tests runs-on: ubuntu-latest services: postgres: image: postgres env: POSTGRES_USER: runner POSTGRES_PASSWORD: "postgres" POSTGRES_DB: pasta_test POSTGRES_HOST_AUTH_METHOD: "trust" ports: - 5432:5432 # needed because the postgres container does not provide a healthcheck options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps: - name: Install Deno uses: denoland/setup-deno@v1 with: deno-version: vx.x.x - uses: actions/checkout@v2.3.4 - name: Run tests run: | deno task test - name: Generate npm package run: | deno task build-npm
pasta

Version Info

Tagged at
a year ago