Created
September 8, 2025 23:16
-
-
Save leofmds/15dc1349d56c15a110695fd9884db4fb to your computer and use it in GitHub Desktop.
Exemplo simples de Action
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: CI | |
| 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: '18' | |
| - run: npm install | |
| - run: npm run lint | |
| - run: npm test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment