diff options
author | Valentin Popov <valentin@popov.link> | 2025-06-06 02:10:57 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2025-06-06 02:12:22 +0300 |
commit | 81bcfbdc654f9da9f4c99b0d16fc1217eec0a8e4 (patch) | |
tree | c6fe7fdc94c3d679911a8d22d0d58e09524b887d /.gitea/workflows/ci.yml | |
parent | 4266100d7f52c440fc94cb02ed12deda14178548 (diff) | |
download | popov.link-81bcfbdc654f9da9f4c99b0d16fc1217eec0a8e4.tar.xz popov.link-81bcfbdc654f9da9f4c99b0d16fc1217eec0a8e4.zip |
Migrate from Gitea Actions to GitHub Actions
Diffstat (limited to '.gitea/workflows/ci.yml')
-rw-r--r-- | .gitea/workflows/ci.yml | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml deleted file mode 100644 index e06db1a..0000000 --- a/.gitea/workflows/ci.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: CI - -on: - push: - branches: [master] - pull_request: - branches: [master] - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: 22 - - name: Install dependencies - run: npm ci - - name: Run checks - run: npm run check |