Skip to content

Adding more information in README.md and in the application #7

Adding more information in README.md and in the application

Adding more information in README.md and in the application #7

Workflow file for this run

# cf https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
name: ci
on:
push:
branches: [master]
tags: ["*"]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Node.js version
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: npm ci
- run: npm run ci