repos / starfx

a micro-mvc framework for react apps
git clone https://github.com/neurosnap/starfx.git

starfx / .github / workflows
Eric Bower  ·  2025-06-06

test.yml

 1name: test
 2
 3on:
 4  push:
 5    branches: main
 6  pull_request:
 7    branches: main
 8
 9permissions:
10  contents: read
11
12jobs:
13  test:
14    runs-on: ubuntu-latest
15    steps:
16      - name: checkout
17        uses: actions/checkout@v4
18
19      - name: setup node
20        uses: actions/setup-node@v4
21
22      - name: install
23        run: npm install
24
25      - name: lint
26        run: npm run ci
27
28      - name: test
29        run: npm test
30
31      - name: test build
32        run: npm run build