forked from GoogleChrome/developer.chrome.com
-
Notifications
You must be signed in to change notification settings - Fork 0
85 lines (74 loc) · 2.96 KB
/
check.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
name: Lint, test and build
# By default, runs when a pull request is opened, synchronized, or reopened.
on: pull_request
jobs:
lint_and_test:
name: Lint, test and build
runs-on: ubuntu-latest
env:
# Increase RAM limit, and make uncaught exceptions crash (default in 16+).
NODE_OPTIONS: --max_old_space_size=4096 --unhandled-rejections=strict
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: Cache node_modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install
run: npm ci
# Checks to see if any files in the PR match one of the listed file types.
# We can use this filter to decide whether or not to run linters or tests.
# You can check if a file with a listed file type is in the PR by doing:
# if: ${{ steps.filter.outputs.md == 'true' }}
# This will return true if there's a markdown file that was changed
# in the PR.
- uses: dorny/[email protected]
id: filter
with:
filters: |
md:
- '**/*.md'
js:
- '**/*.js'
json:
- '**/*.json'
yml:
- '**/*.yml'
scss:
- '**/*.scss'
njk:
- '**/*.njk'
_external:
- 'external/**/*'
# Use the filter to check if files with a specific file type were changed
# in the PR. If they were, run the relevant linters. Otherwise, skip.
- name: Lint Markdown
if: ${{ steps.filter.outputs.md == 'true' }}
run: npm run lint:md
- name: Lint JavaScript
if: ${{ steps.filter.outputs.js == 'true' || steps.filter.outputs.json == 'true' }}
run: npm run lint:js && npm run lint:types
- name: Build JavaScript
if: ${{ steps.filter.outputs.js == 'true' || steps.filter.outputs.json == 'true' }}
run: npm run rollup
- name: Lint SCSS
if: ${{ steps.filter.outputs.scss == 'true' }}
run: npm run lint:scss
- name: Build External
if: ${{ steps.filter.outputs._external == 'true' }}
run: npm run build-external
- name: Build Eleventy
if: ${{ steps.filter.outputs.md == 'true' || steps.filter.outputs.js == 'true' || steps.filter.outputs.yml == 'true' || steps.filter.outputs.njk == 'true' }}
run: npm run ignore && npm run maybe-sync-external && npm run eleventy
# Only run tests if the PR touches behavior related files.
- name: Test
if: ${{ steps.filter.outputs.js == 'true' || steps.filter.outputs.json == 'true' || steps.filter.outputs.yml == 'true' || steps.filter.outputs.njk == 'true'}}
run: npm run test