-
Notifications
You must be signed in to change notification settings - Fork 13
42 lines (33 loc) · 898 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
name: Test
on:
push:
branches:
- main
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 16
- name: Install @devcontainers/cli
run: npm install --location=global @devcontainers/cli
- name: Start Dev Container
env:
DOCKER_BUILDKIT: 1
run: |
git config --global init.defaultBranch main
devcontainer up --workspace-folder .
- name: Lint package
run: devcontainer exec --workspace-folder . poe lint
- name: Test package
run: devcontainer exec --workspace-folder . poe test
- name: Upload coverage
uses: codecov/codecov-action@v3
with:
files: reports/coverage.xml