Skip to content

Commit 48bab6e

Browse files
authored
Pipeline added for yarn install
1 parent 189e9fd commit 48bab6e

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

.github/workflows/run-installs.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Run Tests
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
12+
strategy:
13+
matrix:
14+
node-version: [16.x]
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: Use Node.js ${{ matrix.node-version }}
19+
uses: actions/setup-node@v2
20+
with:
21+
node-version: ${{ matrix.node-version }}
22+
- name: Install dependencies
23+
run: yarn install --frozen-lockfile

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ dist
33
coverage
44
.env
55
.yarn/*
6-
!.yarn/cache
76
!.yarn/patches
87
!.yarn/plugins
98
!.yarn/releases

yarn.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ __metadata:
888888
languageName: unknown
889889
linkType: soft
890890

891-
"@poap-xyz/moments@workspace:packages/moments":
891+
"@poap-xyz/moments@*, @poap-xyz/moments@workspace:packages/moments":
892892
version: 0.0.0-use.local
893893
resolution: "@poap-xyz/moments@workspace:packages/moments"
894894
dependencies:
@@ -1744,7 +1744,7 @@ __metadata:
17441744
version: 0.0.0-use.local
17451745
resolution: "backend-moments-example@workspace:examples/moments/backend"
17461746
dependencies:
1747-
"@poap-xyz/attributes": "*"
1747+
"@poap-xyz/moments": "*"
17481748
"@poap-xyz/providers": "*"
17491749
"@poap-xyz/utils": "*"
17501750
"@types/node-fetch": ^2.6.3

0 commit comments

Comments
 (0)