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