Skip to content

Commit 8b84f0f

Browse files
authored
Merge pull request #10 from grafana/elliot/fix-tests
fixing tests
2 parents b756183 + 2a5555b commit 8b84f0f

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/run-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626

2727
- name: Run test manually
2828
run: |
29-
yarn install
29+
yarn install --frozen-lockfile
3030
yarn build
3131
cd packages/faro-rollup/src/test
32-
yarn install
32+
yarn install --pure-lockfile
3333
cd ../..
34-
yarn install
34+
yarn install --pure-lockfile
3535
cd ../faro-webpack/src/test
36-
yarn install
36+
yarn install --pure-lockfile
3737
yarn build
3838
cd ../../..
3939
yarn test

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "0.0.13",
3+
"version": "0.0.12",
44
"npmClient": "yarn",
55
"packages": [
66
"packages/*"

packages/faro-bundlers-shared/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grafana/faro-bundlers-shared",
3-
"version": "0.0.13",
3+
"version": "0.0.12",
44
"main": "dist/cjs/index.js",
55
"types": "dist/cjs/index.d.ts",
66
"module": "dist/esm/index.mjs",

packages/faro-rollup/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grafana/faro-rollup-plugin",
3-
"version": "0.0.13",
3+
"version": "0.0.12",
44
"description": "Upload a source map to the Faro source map API from a Rollup build pipeline",
55
"type": "module",
66
"main": "dist/cjs/index.js",
@@ -20,7 +20,7 @@
2020
"ava": "^3.8.1"
2121
},
2222
"dependencies": {
23-
"@grafana/faro-bundlers-shared": "^0.0.13",
23+
"@grafana/faro-bundlers-shared": "^0.0.12",
2424
"cross-fetch": "^4.0.0",
2525
"magic-string": "^0.30.5",
2626
"rollup": "^4.1.1"

packages/faro-webpack/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grafana/faro-webpack-plugin",
3-
"version": "0.0.13",
3+
"version": "0.0.12",
44
"description": "Upload a source map to the Faro source map API from a Webpack build pipeline ",
55
"type": "module",
66
"main": "dist/cjs/index.js",
@@ -17,7 +17,7 @@
1717
"test": "ava src/index.test.js"
1818
},
1919
"dependencies": {
20-
"@grafana/faro-bundlers-shared": "^0.0.13",
20+
"@grafana/faro-bundlers-shared": "^0.0.12",
2121
"@rollup/plugin-babel": "^6.0.4",
2222
"@rollup/plugin-node-resolve": "^15.2.3",
2323
"cross-fetch": "^4.0.0",

0 commit comments

Comments
 (0)