Skip to content

Commit 032ffa1

Browse files
committed
add lint-to-the-future UI to gh-pages
1 parent 64a6bd2 commit 032ffa1

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/gh-pages.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: github pages
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-18.04
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions/setup-node@v2
14+
with:
15+
node-version: '14'
16+
- run: npm install -g npm@7
17+
- run: npm install
18+
- run: npx lint-to-the-future output -o lttfOutput --rootUrl ember-styleguide --previous-results https://ember-learn.github.io/ember-styleguide/data.json
19+
- name: Deploy
20+
uses: peaceiris/actions-gh-pages@v3
21+
with:
22+
github_token: ${{ secrets.GITHUB_TOKEN }}
23+
publish_dir: ./lttfOutput

0 commit comments

Comments
 (0)