Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
fix(ci): actually run yarn build
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertCraigie committed Apr 26, 2023
1 parent 054c3b4 commit 467c763
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,20 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'

- name: Install dependencies
run: |
yarn install
- name: Build dist
run: |
yarn build
- name: Push changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
Expand Down

0 comments on commit 467c763

Please sign in to comment.