From f7c25b4614119d31b652366c7cb4b119d346e55f Mon Sep 17 00:00:00 2001 From: ndsboy Date: Sat, 22 Feb 2025 17:39:24 +0000 Subject: [PATCH] feat: use github actions --- .forgejo/workflows/main.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/main.yml b/.forgejo/workflows/main.yml index fa040bf..edb8289 100644 --- a/.forgejo/workflows/main.yml +++ b/.forgejo/workflows/main.yml @@ -9,9 +9,12 @@ jobs: name: 🧪 Astro check runs-on: docker container: - image: denoland/deno:latest + image: node:lts steps: - - uses: actions/checkout@v4 + - uses: https://github.com/actions/checkout@v4 + - uses: https://github.com/denoland/setup-deno@v2 + with: + deno-version: v2.x - run: deno task install - run: deno task check