feat: add sitemap #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-validate | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
validate: | |
name: Validate | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 60 | |
strategy: | |
fail-fast: true | |
matrix: | |
node-version: [20.x] | |
os: [ubuntu-latest] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# # Necessary because `actions/setup-node` does not yet support `corepack`. | |
# # @see https://github.com/actions/setup-node/issues/531 | |
# - name: Install pnpm | |
# uses: pnpm/action-setup@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "npm" | |
- name: Install dependencies | |
run: npm install --frozen-lockfile | |
- name: Format | |
run: npm run format:check | |
# - name: Lint | |
# run: npm run lint:check | |
# - name: Typecheck | |
# run: npm run types:check | |
# - name: Test | |
# run: npm run test | |
# - name: Get playwright version | |
# run: | | |
# PLAYWRIGHT_VERSION=$(pnpm ls @playwright/test --json | jq --raw-output '.[0].devDependencies["@playwright/test"].version') | |
# echo "PLAYWRIGHT_VERSION=$PLAYWRIGHT_VERSION" >> $GITHUB_ENV | |
# - name: Cache playwright browsers | |
# uses: actions/cache@v4 | |
# id: cache-playwright-browsers | |
# with: | |
# path: "~/.cache/ms-playwright" | |
# key: ${{ matrix.os }}-playwright-browsers-${{ env.PLAYWRIGHT_VERSION }} | |
# - name: Install playwright browsers | |
# if: steps.cache-playwright-browsers.outputs.cache-hit != 'true' | |
# run: pnpm exec playwright install --with-deps | |
# - name: Install playwright browsers (os dependencies) | |
# if: steps.cache-playwright-browsers.outputs.cache-hit == 'true' | |
# run: pnpm exec playwright install-deps | |
# - name: Build app | |
# run: pnpm run build | |
# env: | |
# NUXT_PUBLIC_API_BASE_URL: ${{ vars.NUXT_PUBLIC_API_BASE_URL }} | |
# NUXT_PUBLIC_APP_BASE_URL: "http://localhost:3000" | |
# NUXT_PUBLIC_REDMINE_ID: "${{ vars.SERVICE_ID }}" | |
# - name: Run e2e tests | |
# run: pnpm run test:e2e | |
# env: | |
# NUXT_PUBLIC_APP_BASE_URL: "http://localhost:3000" | |
# - uses: actions/upload-artifact@v4 | |
# if: always() | |
# with: | |
# name: playwright-report | |
# path: playwright-report/ | |
# retention-days: 30 | |
build-deploy: | |
if: ${{ github.event_name == 'push' }} | |
needs: [validate] | |
uses: ./.github/workflows/build-deploy.yml | |
secrets: inherit | |
# https://docs.github.com/en/actions/using-workflows/reusing-workflows#access-and-permissions | |
permissions: | |
contents: read | |
packages: write |