-
Notifications
You must be signed in to change notification settings - Fork 120
86 lines (81 loc) · 2.61 KB
/
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
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"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test_deno:
runs-on: ubuntu-latest
strategy:
matrix:
deno-version: ["v1.x"]
steps:
- name: Git Checkout Deno Module
uses: actions/checkout@v2
- name: Use Deno Version ${{ matrix.deno-version }}
uses: denolib/setup-deno@v2
with:
deno-version: ${{ matrix.deno-version }}
- name: Test Module
run: deno task build
test_node:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm run report
- run: npm run codecov
release:
if: github.ref == 'refs/heads/master' && needs.test_node.result == 'success' && needs.test_deno.result == 'success'
needs: [test_node,test_deno]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v1
with:
node-version: '18.x'
- uses: denolib/setup-deno@v2
with:
deno-version: '1.x'
- name: Get current package version
id: package_version
uses: martinbeentjes/[email protected]
- run: deno task build
- run: npm ci
- run: npm run build
- run: git config --global user.name "JamesCullum (Pseudonym)"
- run: git config --global user.email "https://mailhide.io/e/Wno7k"
- name: Check if tag already exists
id: tag_exists
uses: mukunku/[email protected]
with:
tag: "${{ steps.package_version.outputs.current-version}}"
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Git Auto Commit Deno Artifacts
if: steps.tag_exists.outputs.exists == 'false'
uses: stefanzweifel/[email protected]
with:
commit_message: "[skip_ci] v${{ steps.package_version.outputs.current-version}}: Build artifacts for Deno"
tagging_message: "${{ steps.package_version.outputs.current-version}}"
file_pattern: dist/*.js dist/*.cjs
- run: npm run docs
- run: npm run publish-docs
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_AUTH_TOKEN }}