-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (35 loc) · 934 Bytes
/
test.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
36
37
38
39
40
41
42
43
44
45
name: Test
on:
push:
branches: ["main", "next"]
pull_request:
branches: ["main", "next"]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.45.2
- name: Verify formatting
run: deno fmt --check
- name: Run linter
run: deno lint
- name: Check typescript
run: deno check main.ts
- name: Run tests
env:
DOPPLER_ENVIRONMENT: gitlab_ci
KEYS_VERSION: gitlab_ci
run: |
deno test --allow-read --coverage=coverage
deno coverage ./coverage --lcov --output=coverage.lcov
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}