Skip to content

Commit

Permalink
refactor: cleanup website ci jobs (#1745)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdjastrzebski authored Feb 5, 2025
1 parent c47220b commit 0a0e50c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 15 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,3 @@ jobs:

- name: Test in legacy mode
run: CONCURRENT_MODE=0 yarn test:ci

test-website:
runs-on: ubuntu-latest
name: Test Website
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js and website deps
uses: ./.github/actions/setup-website-deps

- name: Build website
run: yarn --cwd website build
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,31 @@ on:
push:
branches: [main]
paths: ['website/**']
pull_request:
branches: ['**']
paths: ['website/**']

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ !contains(github.ref, 'main')}}

jobs:
test:
runs-on: ubuntu-latest
name: Test Website
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js and website deps
uses: ./.github/actions/setup-website-deps

- name: Build website
run: yarn --cwd website build

deploy:
name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -25,12 +46,11 @@ jobs:
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Build output to publish to the `gh-pages` branch:
publish_dir: ./website/build
# The following lines assign commit authorship to the official
# GH-Actions bot for deploys to `gh-pages` branch:
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
# The GH actions bot is used by default if you didn't specify the two fields.
# You can swap them out with your own user credentials.
user_name: github-actions[bot]
user_email: 41898282+github-actions[bot]@users.noreply.github.com
user_email: 41898282+github-actions[bot]@users.noreply.github.com

0 comments on commit 0a0e50c

Please sign in to comment.