diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml new file mode 100644 index 00000000..c166aea9 --- /dev/null +++ b/.github/actions/setup/action.yml @@ -0,0 +1,16 @@ +name: Setup +description: Installs Node, Enables Corepack and caches pnpm. + +runs: + using: composite + + steps: + - name: Enable corepack + run: corepack enable + shell: bash + + - name: Setup node & pnpm + uses: actions/setup-node@v4 + with: + node-version: lts/* + cache: pnpm