Skip to content

Commit 9c4e18b

Browse files
authored
Create build-and-test.yml
1 parent edb2f9d commit 9c4e18b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/build-and-test.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# .github/workflows/build-and-test.yml
2+
name: Build and Test
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
jobs:
9+
build-and-test:
10+
name: Build and test
11+
runs-on: ubuntu-20.04
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v2
15+
- name: Install Node.js 14.x
16+
uses: actions/setup-node@v2
17+
with:
18+
node-version: 14.x
19+
- name: Install dependencies
20+
run: npm clean-install

0 commit comments

Comments
 (0)