@wise/wds-codemods 0.0.1-experimental-d9053f9 โ†’ 0.0.1-experimental-2781d0e

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.
@@ -2,4 +2,4 @@
2
2
  '@wise/wds-codemods': patch
3
3
  ---
4
4
 
5
- NPM release setup
5
+ This patch makes it possible to install both the standard and experimental versions of our `@wise/wds-codemods` package directly through NPM.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wise/wds-codemods",
3
- "version": "0.0.1-experimental-d9053f9",
3
+ "version": "0.0.1-experimental-2781d0e",
4
4
  "license": "UNLICENSED",
5
5
  "author": "Wise Payments Ltd.",
6
6
  "type": "module",
@@ -1,23 +0,0 @@
1
- name: Test
2
- description: 'Run all tests for the project'
3
-
4
- inputs:
5
- github-token:
6
- required: true
7
- description: 'secrets.GITHUB_TOKEN'
8
-
9
- runs:
10
- using: composite
11
- steps:
12
- - name: ๐Ÿ” Mark repo directory as safe for git # https://github.blog/2022-04-12-git-security-vulnerability-announced/
13
- run: git config --global --add safe.directory $GITHUB_WORKSPACE
14
- shell: bash
15
-
16
- - name: ๐Ÿ› ๏ธ Bootstrap dependencies
17
- uses: ./.github/actions/bootstrap
18
- with:
19
- github-token: ${{ inputs.github-token }}
20
-
21
- - name: ๐Ÿงช Run tests
22
- run: pnpm run test
23
- shell: bash