-
Notifications
You must be signed in to change notification settings - Fork 13
44 lines (38 loc) · 1.12 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
name: Test
on: [push, pull_request]
jobs:
test-deploy:
name: Test able to deploy to npm
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
- run: yarn install --frozen-lockfile
- name: Compile
run: yarn typescript
- name: Publish test
run: npm publish --dry-run
assert-lint:
name: Assert lint check passes and no lint errors exist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn lint:report
- name: Annotate Code Linting Results
uses: ataylorme/eslint-annotate-action@v2
with:
check-name: 'eslint results'
only-pr-files: false
fail-on-warning: false
fail-on-error: true
markdown-report-on-step-summary: true
repo-token: "${{ secrets.GITHUB_TOKEN }}"
report-json: "eslint_report.json"