Skip to content
This repository was archived by the owner on Jun 2, 2024. It is now read-only.

Commit 9e13a47

Browse files
committed
ci: adding pull-request workflow
1 parent e2786b6 commit 9e13a47

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Pull Request Workflow
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
build:
7+
name: Test
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checking out project
11+
uses: actions/checkout@v2
12+
- name: Setting up node
13+
uses: actions/setup-node@v1
14+
with:
15+
node-version: 12
16+
- name: Installing dependencies
17+
run: yarn install
18+
- name: Building project
19+
run: yarn build
20+
- name: Running tests
21+
run: yarn test

0 commit comments

Comments
 (0)