mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
108 lines
2.3 KiB
YAML
108 lines
2.3 KiB
YAML
name: 'Divlo'
|
|
|
|
on:
|
|
push:
|
|
branches: [master, develop]
|
|
pull_request:
|
|
branches: [master, develop]
|
|
|
|
jobs:
|
|
analyze:
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
language: ['javascript']
|
|
|
|
steps:
|
|
- uses: 'actions/checkout@v2.3.4'
|
|
|
|
- name: 'Initialize CodeQL'
|
|
uses: 'github/codeql-action/init@v1'
|
|
with:
|
|
languages: ${{ matrix.language }}
|
|
|
|
- name: 'Perform CodeQL Analysis'
|
|
uses: 'github/codeql-action/analyze@v1'
|
|
|
|
lint:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: 'actions/checkout@v2.3.4'
|
|
|
|
- name: 'Use Node.js'
|
|
uses: 'actions/setup-node@v2.2.0'
|
|
with:
|
|
node-version: '16.x'
|
|
cache: 'npm'
|
|
|
|
- name: 'Install'
|
|
run: 'npm install'
|
|
|
|
- run: 'npm run lint:commit -- --to "${{ github.sha }}"'
|
|
- run: 'npm run lint:docker'
|
|
- run: 'npm run lint:editorconfig'
|
|
- run: 'npm run lint:markdown'
|
|
- run: 'npm run lint:typescript'
|
|
|
|
build:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: 'actions/checkout@v2.3.4'
|
|
|
|
- name: 'Use Node.js'
|
|
uses: 'actions/setup-node@v2.2.0'
|
|
with:
|
|
node-version: '16.x'
|
|
cache: 'npm'
|
|
|
|
- name: 'Install'
|
|
run: 'npm install'
|
|
|
|
- name: 'Build'
|
|
run: 'npm run build'
|
|
|
|
- name: 'Lighthouse'
|
|
run: 'npm run lighthouse'
|
|
env:
|
|
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}
|
|
|
|
test:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: 'actions/checkout@v2.3.4'
|
|
|
|
- name: 'Use Node.js'
|
|
uses: 'actions/setup-node@v2.2.0'
|
|
with:
|
|
node-version: '16.x'
|
|
cache: 'npm'
|
|
|
|
- name: 'Install'
|
|
run: 'npm install'
|
|
|
|
- name: 'Test'
|
|
run: 'npm run test'
|
|
|
|
release:
|
|
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
|
|
needs: [analyze, lint, build, test]
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: 'actions/checkout@v2.3.4'
|
|
|
|
- name: 'Use Node.js'
|
|
uses: 'actions/setup-node@v2.2.0'
|
|
with:
|
|
node-version: '16.x'
|
|
cache: 'npm'
|
|
|
|
- name: 'Install'
|
|
run: 'npm install'
|
|
|
|
- name: 'Release'
|
|
run: 'npm run release'
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|