We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b864f7 commit f27f7adCopy full SHA for f27f7ad
.github/workflows/build.yml
@@ -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
.github/workflows/main.yml renamed to .github/workflows/release.yml
0 commit comments