-
Notifications
You must be signed in to change notification settings - Fork 25
43 lines (40 loc) · 1023 Bytes
/
cd.yml
File metadata and controls
43 lines (40 loc) · 1023 Bytes
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: Test and Deploy
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-and-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 21
- run: npm ci
- run: npm audit --omit=dev
- run: npm test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
publish-npm:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
needs: test-and-coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 21
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build
- run: cp -R src/icons dist/
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}