From 7992cc73c32bd7d3661fdc3dfada1985ecfcd81b Mon Sep 17 00:00:00 2001 From: "freckle-automation-app[bot]" <176077675+freckle-automation-app[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 00:30:03 +0000 Subject: [PATCH] Update .github/workflows/ci.yml --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 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 000000000..56bc81a1f --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: CI + +on: + pull_request: + push: + branches: main + +jobs: + build: + runs-on: cicd-prod-03-ubuntu-prod + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + cache: yarn + node-version-file: '.nvmrc' + - run: yarn install + - run: yarn build + - run: yarn test --passWithNoTests