Skip to content

Commit b4ef41e

Browse files
committed
Merge branch 'main' of github.com:SchoolOfCode/week-10-hackathon-the-container-crew
2 parents d61469f + 5a63c6c commit b4ef41e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- feature/*
8+
pull_request:
9+
branches:
10+
- main
11+
12+
jobs:
13+
test:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Set up Node.js
18+
uses: actions/setup-node@v2
19+
with:
20+
node-version: '22'
21+
- run: npm install
22+
- run: npm test

0 commit comments

Comments
 (0)