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.
34 lines
807 B
34 lines
807 B
name: Build & Lint |
|
on: |
|
push: |
|
branches: [ dev, master ] |
|
tags: |
|
- '*.*.*' |
|
pull_request: |
|
branches: [ dev ] |
|
jobs: |
|
build: |
|
runs-on: ubuntu-latest |
|
strategy: |
|
matrix: |
|
node: [ '14', '16' ] |
|
name: Node ${{ matrix.node }} |
|
|
|
steps: |
|
- uses: actions/checkout@v3 |
|
- name: Setup node |
|
uses: actions/setup-node@v3 |
|
with: |
|
node-version: ${{ matrix.node }} |
|
- name: Cache Node modules |
|
uses: actions/cache@v3 |
|
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
|
|
|