Skip to content

Commit 012b87f

Browse files
committed
chore: setup node ci
1 parent af4037b commit 012b87f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/ci.yml

+11
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,18 @@ on:
88
jobs:
99
build:
1010
name: 'Build and Push'
11+
# Definir o runner para rodar as actions
1112
runs-on: ubuntu-latest
1213

1314
steps:
15+
# Permitir o acesso ao código da aplicação
1416
- uses: actions/checkout@v4
17+
18+
# Fazer o setup do node para rodar a aplicação
19+
- uses: actions/setup-node@v4
20+
with:
21+
node-version: 20
22+
cache: 'yarn'
23+
- run: yarn
24+
- run: yarn run test
25+

0 commit comments

Comments
 (0)