From 467c763183ba2c757e4d203887fa73246fa04ac0 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Wed, 26 Apr 2023 17:08:02 +0100 Subject: [PATCH] fix(ci): actually run yarn build --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56ecb61..bacd922 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: