Skip to content

🔧 chore(test-and-build.yml): update branch filter to allow any branch… #23

🔧 chore(test-and-build.yml): update branch filter to allow any branch…

🔧 chore(test-and-build.yml): update branch filter to allow any branch… #23

Workflow file for this run

# .github/workflows/test-and-build.yml
name: Test & Build
# any tag or branch name
on:
push:
branches: ["*"]
tags: ["*"]
pull_request:
branches: ["*"]
jobs:
test-and-build:
runs-on: ubuntu-latest
container: node:18
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Lint and Test
run: |
export CI=TRUE
npm run lint:ci
npm test -- --coverage --json --outputFile=testResults.json