Skip to content

docs: updated README #4

docs: updated README

docs: updated README #4

Workflow file for this run

name: ci
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-node@v4.0.2
with:
node-version: '20'
cache: npm
- name: Build proyect
run: |
npm install
npm run build
- name: Run test
run: |
npm t