Skip to content

Instantly share code, notes, and snippets.

@leofmds
Created September 8, 2025 23:16
Show Gist options
  • Select an option

  • Save leofmds/15dc1349d56c15a110695fd9884db4fb to your computer and use it in GitHub Desktop.

Select an option

Save leofmds/15dc1349d56c15a110695fd9884db4fb to your computer and use it in GitHub Desktop.
Exemplo simples de Action
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