Usando novos pacotes de dialetos, que deixarão de fazer parte do núcleo de Delégua + ajustes. #38
Workflow file for this run
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: Commit e PR - Principal | |
on: | |
pull_request: | |
branches: [ principal ] | |
jobs: | |
testes-delegua: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2-beta | |
with: | |
node-version: '16' | |
- name: NPM - Dependências | |
run: | | |
sudo npm install | |
- name: Testes da Linguagem Delégua | |
run: | | |
sudo chmod +x ./bin/delegua-ts | |
sudo npm run testes:delegua:bhaskara | |
sudo npm run testes:delegua:fibonacci | |
testes-egua-classico: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2-beta | |
with: | |
node-version: '16' | |
- name: NPM - Dependências | |
run: | | |
sudo npm install | |
- name: Testes do Dialeto Égua Clássico | |
run: | | |
sudo chmod +x ./bin/delegua-ts | |
sudo npm run testes:egua | |
testes-unitarios: | |
permissions: | |
checks: write | |
pull-requests: write | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2-beta | |
with: | |
node-version: '16' | |
- uses: ArtiomTr/jest-coverage-report-action@v2 | |
id: coverage | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
test-script: yarn testes-unitarios | |
package-manager: yarn | |
output: report-markdown | |
- uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
message: ${{ steps.coverage.outputs.report }} |