Skip to content

Merge pull request #156 from fells-code/feat/init-non-interactive #81

Merge pull request #156 from fells-code/feat/init-non-interactive

Merge pull request #156 from fells-code/feat/init-non-interactive #81

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
name: Build and unit test
runs-on: ubuntu-latest
env:
HUSKY: 0
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Unit tests
run: npm test