diff options
author | Valentin Popov <valentin@popov.link> | 2025-05-08 15:34:43 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2025-05-08 15:34:43 +0300 |
commit | 8bce6939d13bc2a071382f947cebc504a8bd06f3 (patch) | |
tree | 91eb091fea033338a29c23e4de22a1d13bb7618d | |
parent | e296d4a801445a99c81576837631bcb8e6b99356 (diff) | |
download | popov.link-8bce6939d13bc2a071382f947cebc504a8bd06f3.tar.xz popov.link-8bce6939d13bc2a071382f947cebc504a8bd06f3.zip |
-rw-r--r-- | .gitea/workflows/ci.yml | 20 | ||||
-rw-r--r-- | .github/workflows/test.yml | 13 |
2 files changed, 20 insertions, 13 deletions
diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..352379b --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,20 @@ +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 + - run: npm ci + - run: npm run check diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index ccd08a1..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Test -on: [push, pull_request] - -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 22 - - run: npm ci - - run: npm run check |