lint, git, circleci, basics

This commit is contained in:
2023-02-26 15:20:36 +01:00
parent 5b71c1760d
commit f4a7370c5e
5 changed files with 80 additions and 4 deletions

24
.circleci/config.yml Normal file
View File

@@ -0,0 +1,24 @@
version: 2.1
orbs:
node: circleci/node@5.1.0
jobs:
build_and_test:
executor: node/default
steps:
- checkout
- node/install-packages:
pkg-manager: npm
- run:
command: npm run build
name: Build app
- run:
command: npm run test
name: Run tests
- run:
command: npm run build-website
name: Build documentation
- persist_to_workspace:
root: ~/project
paths:
- .