From 1deac84660ba749a140ac28ff9505ddf59d2fa68 Mon Sep 17 00:00:00 2001 From: Marco Biedermann <5244986+marcobiedermann@users.noreply.github.com> Date: Mon, 23 Jan 2023 15:56:04 +0100 Subject: [PATCH] chore: GitHub Actions Use GitHub Actions from "marcobiedermann/actions" --- .github/workflows/ci.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3fa6636d..3e1ed732 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,18 +11,8 @@ jobs: runs-on: ubuntu-latest steps: - - name: ⏬ Checkout - uses: actions/checkout@v2 - - - name: 🔢 Read .nvmrc - run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)" - id: nvm - - - name: ⚙️ Use Node.js (.nvmrc) - uses: actions/setup-node@v2 - with: - cache: 'npm' - node-version: '${{ steps.nvm.outputs.NVMRC }}' + - uses: marcobiedermann/actions/checkout@main + - uses: marcobiedermann/actions/setup-node@main - name: 🔋 Install run: npm ci