forked from bubkoo/html-to-image
-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (38 loc) · 895 Bytes
/
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
36
37
38
39
40
41
42
43
name: 👷 CI
on:
pull_request_target:
push:
branches:
- master
- next
- next-major
- alpha
- beta
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- lts/*
- current
steps:
- name: ⤵️ Checkout
uses: actions/checkout@v3
- name: 🎉 Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: 🚧 Install
run: npm ci
- name: 📦 Build
run: npm run build
- name: ✅ Test
run: npm test
- name: 💡 Codecov
uses: codecov/codecov-action@v2
if: matrix.node-version == 'lts/*'
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./test/coverage/lcov.info