Skip to content

Commit

Permalink
Merge pull request #132 from unb-mds/pipeline
Browse files Browse the repository at this point in the history
chore: adiciona o fluxo da pipeline
  • Loading branch information
Atyrson authored Aug 13, 2024
2 parents 2244e94 + ff03b03 commit ad65409
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 64 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Tests

on: [pull_request]

jobs:
tests:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Instalar dependencias para o vue
run: npm install --prefix ./vue-app

- name: Rodar testes para o vue
run: npm test --prefix ./vue-app

- name: Instalar dependencias para o node
run: npm install --prefix ./node-app

61 changes: 0 additions & 61 deletions vue-app/tests/components/AvaliacaoMateriaComponents.spec.js

This file was deleted.

3 changes: 0 additions & 3 deletions vue-app/tests/components/rules.txt

This file was deleted.

0 comments on commit ad65409

Please sign in to comment.