diff options
author | Chris Swithinbank | 2023-09-01 20:16:37 +0200 |
---|---|---|
committer | GitHub | 2023-09-01 20:16:37 +0200 |
commit | 7b2e87c40f76604180b95f3991493a33c3892e23 (patch) | |
tree | 038fb0c89ce1a263892b137bdccba3784b554355 | |
parent | 7b75b3eb7e6f7870a0adef2d6534ff48309fdb0e (diff) | |
download | IT.starlight-7b2e87c40f76604180b95f3991493a33c3892e23.tar.gz IT.starlight-7b2e87c40f76604180b95f3991493a33c3892e23.tar.bz2 IT.starlight-7b2e87c40f76604180b95f3991493a33c3892e23.zip |
Move CI runs back to Node 18 due to pnpm bug (#627)
-rw-r--r-- | .github/workflows/format.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index d3e8e550..4156fc40 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -18,7 +18,7 @@ jobs: - uses: pnpm/action-setup@v2 - uses: actions/setup-node@v3 with: - node-version: 20 + node-version: 18 cache: 'pnpm' - run: pnpm i - name: Format with Prettier diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 818db522..8dc3aafd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: 20 + node-version: 18 cache: 'pnpm' - name: Install Dependencies |