decentraland-dapps 12.47.0 → 12.48.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,25 @@
1
+ name: build-test-publish
2
+
3
+ on: [push]
4
+
5
+ jobs:
6
+ build-test-publish:
7
+ name: Build and Test
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ - uses: actions/setup-node@v3
12
+ with:
13
+ node-version: '14'
14
+ - name: Install dependencies
15
+ run: npm ci
16
+ - name: Build
17
+ run: npm run build
18
+ - name: Test
19
+ run: npm test
20
+ - name: Publish
21
+ if: github.ref == 'refs/heads/master'
22
+ env:
23
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
24
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
+ run: npm run semantic-release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "decentraland-dapps",
3
- "version": "12.47.0",
3
+ "version": "12.48.0",
4
4
  "dependencies": {
5
5
  "@0xsequence/multicall": "^0.25.1",
6
6
  "@0xsequence/relayer": "^0.25.1",