Skip to content

Commit 1244061

Browse files
Add PR CI workflow (#22)
1 parent 50771d2 commit 1244061

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/pr.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Build
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
pr:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
- uses: actions/setup-node@v3
12+
with:
13+
node-version: 16
14+
cache: "yarn"
15+
16+
- name: Install dependencies
17+
run: |
18+
yarn install --frozen-lockfile
19+
20+
- name: Package extension
21+
run: |
22+
yarn package

0 commit comments

Comments
 (0)