From f14958533f259c3c3b0a3306d98b1deaae2899bd Mon Sep 17 00:00:00 2001 From: Manu Artero Anguita Date: Tue, 31 Oct 2023 17:29:09 +0100 Subject: [PATCH] chore: init GitHub workflows --- .github/workflows/blue-ball.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/blue-ball.yaml diff --git a/.github/workflows/blue-ball.yaml b/.github/workflows/blue-ball.yaml new file mode 100644 index 0000000..3c0d8ea --- /dev/null +++ b/.github/workflows/blue-ball.yaml @@ -0,0 +1,19 @@ +name: Blue Ball + +on: + push: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 18.17.1 + + - run: npm ci --ignore-scripts + - run: npm test + - run: npm run build