Skip to content

fix(grade-status): corregimos logica para evaluar pendiente #21

fix(grade-status): corregimos logica para evaluar pendiente

fix(grade-status): corregimos logica para evaluar pendiente #21

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '12', '14', '16' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm ci
- name: lint
run: npm run lint:check
release:
if: github.ref == 'refs/heads/master'
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.17.5'
cache: 'npm'
- run: npm ci
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}