Eliminar más rastros de Hdiv #746
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🧪 Front-end tests | |
on: | |
push: | |
branches: ['master', 'develop*', 'feat-*', 'hotfix-*', 'fix-*'] | |
pull_request: | |
branches: ['master', 'develop*', 'feat-*', 'hotfix-*', 'fix-*'] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.20.0] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm install --no-progress | |
- name: Run tests | |
run: npm run test:karma --if-present |