Skip to content

Commit

Permalink
Clean up unused workflows
Browse files Browse the repository at this point in the history
We continuously deploy to https://compound.element.io using Cloudflare Pages, so we don't need to deploy to GitHub Pages as well. However, the workflow that did that was still useful for verifying that this actually builds, so I've kept that part.

Also, we don't release anything here to NPM.
  • Loading branch information
robintown committed Jul 9, 2024
1 parent 0f138db commit 03a880d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 92 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/automation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Automation
on:
pull_request: {}
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set up cache
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn run build-storybook
33 changes: 0 additions & 33 deletions .github/workflows/deploy.yml

This file was deleted.

59 changes: 0 additions & 59 deletions .github/workflows/npm-release.yml

This file was deleted.

0 comments on commit 03a880d

Please sign in to comment.