You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
801 B
35 lines
801 B
3 years ago
|
name: Build & Lint
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ dev, master ]
|
||
|
tags:
|
||
|
- '*.*.*'
|
||
|
pull_request:
|
||
|
branches: [ dev ]
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
node: [ '14' ]
|
||
|
name: Node ${{ matrix.node }}
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- name: Setup node
|
||
|
uses: actions/setup-node@v2
|
||
|
with:
|
||
|
node-version: ${{ matrix.node }}
|
||
|
- name: Cache Node modules
|
||
|
uses: actions/cache@v2
|
||
|
with:
|
||
|
path: node_modules
|
||
|
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
|
||
|
- name: Install Node dependencies & build assets
|
||
|
run: |
|
||
|
node -v
|
||
|
npm install
|
||
|
npm run build
|
||
|
- name: Run ESLint and Stylelint
|
||
|
run: npm run lint
|