59 lines
1.3 KiB
YAML
59 lines
1.3 KiB
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
env:
|
|
NODE_VERSION: 16
|
|
jobs:
|
|
setup:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out Admin UI
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: ${{ env.NODE_VERSION }}
|
|
check-latest: true
|
|
cache: npm
|
|
|
|
- name: Cache Node modules
|
|
id: cache-node-modules
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: node_modules
|
|
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
- name: Install dependencies
|
|
if: steps.cache-node-modules.outputs.cache-hit != 'true'
|
|
run: npm ci
|
|
|
|
- name: Cache setup
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ./*
|
|
key: ${{ github.sha }}
|
|
|
|
run:
|
|
needs: setup
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
command: [lint, test, build]
|
|
steps:
|
|
- name: Restore setup
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ./*
|
|
key: ${{ github.sha }}
|
|
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: ${{ env.NODE_VERSION }}
|
|
|
|
- name: Run ${{ matrix.command }} task
|
|
run: npm run ${{ matrix.command }}
|