diff --git a/.github/workflows/github-actions-demo.yaml b/.github/workflows/github-actions-demo.yaml new file mode 100644 index 0000000..d11da3a --- /dev/null +++ b/.github/workflows/github-actions-demo.yaml @@ -0,0 +1,48 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs + +name: CI + +on: + push: + branches: [ "add-materiais-aula" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + defaults: + run: + working-directory: ./exercicios/para-sala/users-api-aula + + strategy: + matrix: + node-version: [18.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v4 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + - run: npm ci + - run: npm run build --if-present + - run: npm test + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + - name: Log in to Docker Hub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + + - name: Build and push Docker image + uses: docker/build-push-action@v5 + with: + context: . + push: true + tags: raissabrizeno/users-api-aula:1.0.0