diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000000..b9cecf7ec8 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +--- +name: ci +on: + push: + branches: + - main + - 'release*' + pull_request: + +env: + NODE_VERSION: 20.13.1 + TERM: xterm + +jobs: + test: + runs-on: ubuntu-22.04 + steps: + - name: ci/checkout-repo + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - name: ci/test + uses: ./.github/actions/test