-
Notifications
You must be signed in to change notification settings - Fork 155
71 lines (52 loc) · 1.88 KB
/
local.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
name: local
on: [pull_request]
jobs:
polymer-2:
runs-on: ubuntu-latest
steps:
- name: Set up Node 12.x
uses: actions/setup-node@v2
with:
node-version: 12.x
- name: Check out the source code
uses: actions/checkout@v2
- name: Install latest npm
# magi-cli 1.0 requires npm 7 or higher
run: "npm install -g npm@8"
- name: Install global npm dependencies
# bower is needed to run 'bower install'
run: "npm install --quiet --no-progress --global bower"
- name: Install project npm dependencies
run: "npm ci"
- name: Install project Bower dependencies
run: "bower install --quiet"
- name: Run automated magi-cli checks
run: "npm run check"
- name: Run a linter
run: "npm run lint"
- name: Run unit tests
run: xvfb-run -s '-screen 0 1024x768x24' npm test
- name: Run unit tests - Polymer2 specific
run: xvfb-run -s '-screen 0 1024x768x24' npm test --suite polymer2Only
polymer-3:
runs-on: ubuntu-latest
steps:
- name: Set up Node 12.x
uses: actions/setup-node@v2
with:
node-version: 12.x
- name: Check out the (Polymer 2) source code
uses: actions/checkout@v2
- name: Install latest npm
# magi-cli 1.0 requires npm 7 or higher
run: "npm install -g npm@8"
- name: Install global npm dependencies
# bower and polymer-modulizer are needed to run the Polymer 3 conversion step
run: "npm install --quiet --no-progress --global bower magi-cli polymer-modulizer"
- name: Convert the source code to Polymer 3
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
magi p3-convert --out . --import-style=name
- name: Run unit tests
run: xvfb-run -s '-screen 0 1024x768x24' npm test