136 lines
3.6 KiB
YAML
136 lines
3.6 KiB
YAML
name: Main Branch
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
prettier:
|
|
name: Run Prettier check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: npm
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Run Prettier
|
|
run: npm run prettier:check
|
|
|
|
typescript:
|
|
name: Run TypeScript check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: npm
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Run TypeScript types check
|
|
run: npm run ts:check
|
|
|
|
astro:
|
|
name: Run Astro check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: npm
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Run Astro check
|
|
run: npm run astro:check
|
|
|
|
deploy:
|
|
name: Deploy to Netlify
|
|
needs: [prettier, typescript, astro]
|
|
if: github.repository == 'KonradSzwarc/devscard'
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
deploy-url: ${{ steps.netlify.outputs.deploy-url }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: npm
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Run Astro build command
|
|
run: npm run build
|
|
- name: Deploy to Netlify
|
|
id: netlify
|
|
uses: nwtgck/actions-netlify@v2
|
|
with:
|
|
publish-dir: dist
|
|
production-branch: main
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
production-deploy: true
|
|
env:
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
|
timeout-minutes: 1
|
|
|
|
percy:
|
|
name: Run Percy check
|
|
if: github.repository == 'KonradSzwarc/devscard'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: npm
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Run Astro build command
|
|
run: npm run build
|
|
env:
|
|
PUBLIC_APP_ENV: snapshot
|
|
- name: Percy check
|
|
env:
|
|
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
|
|
run: npx percy snapshot dist/
|
|
|
|
lighthouse:
|
|
name: Run Lighthouse check
|
|
if: github.repository == 'KonradSzwarc/devscard'
|
|
needs: deploy
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Lighthouse check
|
|
uses: foo-software/lighthouse-check-action@master
|
|
with:
|
|
urls: ${{ needs.deploy.outputs.deploy-url }}
|
|
device: all
|
|
|
|
release:
|
|
name: Create release
|
|
if: github.repository == 'KonradSzwarc/devscard'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Get project information
|
|
id: projectinfo
|
|
uses: gregoranders/nodejs-project-info@v0.0.19
|
|
- name: Get changelog entries
|
|
id: changelog_reader
|
|
uses: mindsers/changelog-reader-action@v2
|
|
with:
|
|
version: ${{ steps.projectinfo.outputs.version }}
|
|
- name: Create a new tag and release
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
tag: ${{ steps.changelog_reader.outputs.version }}
|
|
name: Release ${{ steps.changelog_reader.outputs.version }}
|
|
body: ${{ steps.changelog_reader.outputs.changes }}
|
|
allowUpdates: true
|