mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
127 lines
3.0 KiB
YAML
127 lines
3.0 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.3.1'
|
|
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.3.1'
|
|
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.3.1'
|
|
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'
|
|
with:
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
|
|
- name: 'Import GPG key'
|
|
uses: 'crazy-max/ghaction-import-gpg@v3.1.0'
|
|
with:
|
|
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
|
|
git-user-signingkey: true
|
|
git-commit-gpgsign: true
|
|
|
|
- name: 'Use Node.js'
|
|
uses: 'actions/setup-node@v2.3.1'
|
|
with:
|
|
node-version: '16.x'
|
|
cache: 'npm'
|
|
|
|
- name: 'Install'
|
|
run: 'npm install'
|
|
|
|
- name: 'Release'
|
|
run: 'npm run release'
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
GIT_COMMITTER_NAME: ${{ secrets.GIT_NAME }}
|
|
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_EMAIL }}
|
|
|
|
- name: 'Deploy to Vercel'
|
|
run: 'npm run deploy -- --token="${VERCEL_TOKEN}" --prod'
|
|
env:
|
|
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
|
|
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
|
|
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
|