Skip to content

docs: add Spanish README #246

docs: add Spanish README

docs: add Spanish README #246

Workflow file for this run

name: tests
on:
push:
branches: [main, v*]
pull_request:
branches: [main, v*]
jobs:
node:
name: Node.js
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm i
- name: Run Docker Compose
run: docker compose up -d
- name: Run node tests
run: npm run test:node