1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/.github/workflows/Divlo.yml

115 lines
2.6 KiB
YAML
Raw Normal View History

2021-04-18 22:30:27 +02:00
name: 'Divlo'
2021-04-18 01:56:23 +02:00
on:
push:
2021-06-13 01:53:13 +02:00
branches: [master, develop]
2021-04-18 01:56:23 +02:00
pull_request:
2021-06-13 01:53:13 +02:00
branches: [master, develop]
2021-04-18 01:56:23 +02:00
jobs:
2021-05-31 15:04:17 +02:00
analyze:
2021-04-18 01:56:23 +02:00
runs-on: 'ubuntu-latest'
2021-05-31 15:04:17 +02:00
2021-04-18 01:56:23 +02:00
strategy:
2021-05-31 15:04:17 +02:00
fail-fast: false
2021-04-18 01:56:23 +02:00
matrix:
2021-05-31 15:04:17 +02:00
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'
2021-04-18 01:56:23 +02:00
steps:
- uses: 'actions/checkout@v2.3.4'
2021-04-18 01:56:23 +02:00
2021-05-31 15:04:17 +02:00
- name: 'Use Node.js'
uses: 'actions/setup-node@v2.3.0'
2021-04-18 01:56:23 +02:00
with:
2021-06-13 01:53:13 +02:00
node-version: '16.x'
cache: 'npm'
2021-04-18 01:56:23 +02:00
2021-05-31 15:04:17 +02:00
- name: 'Install'
run: 'npm install'
2021-05-31 15:04:17 +02:00
2021-04-18 01:56:23 +02:00
- 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'
2021-05-31 15:04:17 +02:00
build:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v2.3.4'
- name: 'Use Node.js'
uses: 'actions/setup-node@v2.3.0'
2021-05-31 15:04:17 +02:00
with:
2021-06-13 01:53:13 +02:00
node-version: '16.x'
cache: 'npm'
2021-05-31 15:04:17 +02:00
- name: 'Install'
run: 'npm install'
2021-05-31 15:04:17 +02:00
- name: 'Build'
run: 'npm run build'
- name: 'Lighthouse'
run: 'npm run lighthouse'
2021-06-15 20:35:52 +02:00
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}
2021-05-31 15:04:17 +02:00
test:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v2.3.4'
- name: 'Use Node.js'
uses: 'actions/setup-node@v2.3.0'
2021-05-31 15:04:17 +02:00
with:
2021-06-13 01:53:13 +02:00
node-version: '16.x'
cache: 'npm'
2021-05-31 15:04:17 +02:00
- name: 'Install'
run: 'npm install'
2021-05-31 15:04:17 +02:00
- 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.3.0'
2021-05-31 15:04:17 +02:00
with:
2021-06-13 01:53:13 +02:00
node-version: '16.x'
cache: 'npm'
2021-05-31 15:04:17 +02:00
- name: 'Install'
run: 'npm install'
2021-05-31 15:04:17 +02:00
- name: 'Release'
run: 'npm run release'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2021-07-27 19:00:21 +02:00
- 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 }}