generated from tasshi-me/ts-node-template
-
Notifications
You must be signed in to change notification settings - Fork 5
30 lines (29 loc) · 870 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
name: test
on:
push:
pull_request:
jobs:
test:
name: Test ${{ matrix.os }} ${{ matrix.node-version }}
strategy:
matrix:
os: [ ubuntu-latest ]
node-version: [18.x, 20.x]
runs-on: ${{ matrix.os }}
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: "${{ matrix.node-version }}"
cache: "pnpm"
- run: pnpm install
- run: pnpm build
- run: pnpm test:generate-dashboard
- run: cat test-dashboard.md | tee -a $GITHUB_STEP_SUMMARY
if: always()
- uses: codecov/codecov-action@0cfda1dd0a4ad9efc75517f399d859cd1ea4ced1 # v4
with:
token: ${{ secrets.CODECOV_TOKEN }}