-
-
Notifications
You must be signed in to change notification settings - Fork 8
86 lines (71 loc) · 2.25 KB
/
linux.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: CI (Linux)
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches-ignore:
- "!gh-pages"
jobs:
build_and_test:
name: x86_64-unknown-linux-gnu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: ⚡ Cache
uses: actions/cache@v2
with:
path: |
**/node_modules
key: ${{ runner.os }}-cargo-${{ hashFiles('**/yarn.lock') }}
- uses: actions/setup-node@v3
with:
node-version: "20.x"
- uses: pnpm/action-setup@v2.0.1
with:
version: 8
- name: Install JavaScript Dependencies
run:
make install
# - name: Lint
# run: cd packages/vanilla && yarn lint
- name: Build
run: make
- name: Test
run: make test
- name: generate TS documentation
run: make docs
- name: Deploy Docuemntation to GitHub Pages
if: github.repository == 'mCaptcha/glue' && github.ref == 'refs/heads/master'
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: doc/
- name: Upload vanilla coverage to Codecov
if: github.ref == 'refs/heads/master'
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: packages/vanilla/coverage/lcov.info
flags: vanilla
- name: Upload core coverage to Codecov
if: github.ref == 'refs/heads/master'
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: packages/core/coverage/lcov.info
flags: core
- name: Upload React coverage to Codecov
if: github.ref == 'refs/heads/master'
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: packages/react/coverage/lcov.info,
flags: react
- name: Upload Svelte to Codecov
if: github.ref == 'refs/heads/master'
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: packages/svelte/coverage/lcov.info
flags: svelte