Skip to content

Merge pull request #35 from SVendittelli/feat/feature-flags #12

Merge pull request #35 from SVendittelli/feat/feature-flags

Merge pull request #35 from SVendittelli/feat/feature-flags #12

Workflow file for this run

name: Node.js CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm run test:ci