81 lines
1.7 KiB
YAML
81 lines
1.7 KiB
YAML
name: pl-fe CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "fork" ]
|
|
pull_request:
|
|
branches: [ "fork" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: Test and upload artifacts
|
|
strategy:
|
|
matrix:
|
|
node-version: [21.x]
|
|
|
|
steps:
|
|
- name: Install system dependencies
|
|
run: sudo apt install -y unzip
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: Install deps
|
|
working-directory: ./packages/pl-fe
|
|
run: yarn install --ignore-scripts
|
|
|
|
- name: Lint
|
|
working-directory: ./packages/pl-fe
|
|
run: yarn lint
|
|
|
|
- name: build
|
|
env:
|
|
NODE_ENV: production
|
|
working-directory: ./packages/pl-fe
|
|
run: |
|
|
yarn build
|
|
cp dist/index.html dist/404.html
|
|
|
|
- name: i18n
|
|
working-directory: ./packages/pl-fe
|
|
run: |
|
|
yarn i18n
|
|
git diff
|
|
git diff --quiet || (echo "Locale files are out of date. Please run \`yarn i18n\`" && exit 1)
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: pl-fe
|
|
path: packages/pl-fe/dist
|
|
|
|
- name: Upload Github Pages artifact
|
|
uses: actions/upload-pages-artifact@v3
|
|
with:
|
|
name: github-pages
|
|
path: packages/pl-fe/dist
|
|
|
|
deploy:
|
|
needs: build
|
|
if: github.ref == 'refs/heads/fork'
|
|
|
|
permissions:
|
|
pages: write
|
|
id-token: write
|
|
|
|
environment:
|
|
name: github-pages
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Deploy to GitHub Pages
|
|
id: deployment
|
|
uses: actions/deploy-pages@v4
|
|
|