Feature/36 character screen creation #42
This file contains hidden or 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: build | |
on: | |
pull_request: | |
branches: [main, develop, release/**] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 👷 Realiza build do projeto | |
run: echo "👷 build iniciada por ${{ github.actor }}" | |
- name: 🔦 Checkout | |
uses: actions/checkout@v4 | |
- name: 🧰 Setup node | |
uses: actions/setup-node@v4 | |
- name: ⚒️ Build EasyCrit frontend | |
run: | | |
npm i | |
npm run build |