Skip to content

Commit

Permalink
ci: Add lint (apache#455)
Browse files Browse the repository at this point in the history
Co-authored-by: Rapiz <code@rapiz.me>
  • Loading branch information
rapiz1 and rapiz1 authored Sep 10, 2020
1 parent d3678bc commit d6ba6cc
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions .github/workflows/multiple-node-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,19 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

# Install dependencies
- name: Install dependencies
run: yarn

- name: Build the Dashboard
run: yarn build
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

# Install dependencies
- name: Install dependencies
run: yarn

- name: Build the Dashboard
run: yarn build

- name: Lint
run: yarn run lint:js && yarn run lint:style

0 comments on commit d6ba6cc

Please sign in to comment.