Compare commits
No commits in common. "c85be2e083e4e31015920d8a653946c14c3708cf" and "1165ee22c389bacf1661cc56507bfdccc5cb2971" have entirely different histories.
c85be2e083
...
1165ee22c3
1 changed files with 0 additions and 25 deletions
|
|
@ -1,25 +0,0 @@
|
||||||
# CI: run the test suite on every pull request and on pushes to main, so
|
|
||||||
# regressions are caught before they reach a release tag.
|
|
||||||
#
|
|
||||||
# Requirements:
|
|
||||||
# - A Forgejo Actions runner on the instance. Adjust `runs-on` to a label
|
|
||||||
# your runner actually advertises (common: docker, ubuntu-latest).
|
|
||||||
|
|
||||||
name: ci
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
pull_request:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: docker
|
|
||||||
container:
|
|
||||||
image: node:22-bookworm
|
|
||||||
steps:
|
|
||||||
- name: Check out commit
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
run: npm ci && npm test
|
|
||||||
Loading…
Reference in a new issue