From 55ba281a38c7d3356210424f27577caeb46c624a Mon Sep 17 00:00:00 2001 From: Rahim Rahman Date: Fri, 20 Sep 2024 00:21:38 -0600 Subject: [PATCH] renamed ci.yml back to original --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000000..b9cecf7ec89 --- /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