Skip to content

Commit f27f7ad

Browse files
committed
Add build workflow
1 parent 5b864f7 commit f27f7ad

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build
2+
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
7+
steps:
8+
- uses: actions/checkout@v2
9+
10+
- name: Setup Node.js environment
11+
uses: actions/setup-node@v2.1.2
12+
with:
13+
node-version: 12.x
14+
15+
- name: Install dependencies
16+
run: yarn install
17+
18+
- name: Build plugin
19+
run: yarn build
File renamed without changes.

0 commit comments

Comments
 (0)