Skip to content

corrige imports nas rotas #4

corrige imports nas rotas

corrige imports nas rotas #4

Workflow file for this run

name: CI/CD
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20.x"
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Build
run: yarn build
# Add a deployment step here if needed
# - name: Deploy
# if: github.ref == 'refs/heads/main'
# run: |
# # Add your deployment script here