diff --git a/package-lock.json b/package-lock.json index 8b13789..6c419b6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1 +1,25 @@ +name: Instalar DependĂȘncias e Testar +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Use Node.js + uses: actions/setup-node@v2 + with: + node-version: '14' + + - name: Instalar DependĂȘncias + run: npm ci + + - name: Rodar Testes + run: npm test