We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d298f3d commit 1bf66ddCopy full SHA for 1bf66dd
.github/workflows/release-all-codemods.yml
@@ -0,0 +1,26 @@
1
+name: Release all codemods
2
+
3
+jobs:
4
+ release:
5
+ runs-on: ubuntu-latest
6
7
+ strategy:
8
+ matrix:
9
+ node-version: [14.x]
10
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ with:
14
+ fetch-depth: 0
15
+ - name: Use Node.js ${{ matrix.node-version }}
16
+ uses: actions/setup-node@v1
17
18
+ node-version: ${{ matrix.node-version }}
19
+ - run: yarn install --frozen-lockfile
20
+ - run: yarn validate
21
+ - run: yarn test
22
+ - run: yarn validate:codemods
23
+ - run: yarn release-all:codemods
24
+ env:
25
+ CI: true
26
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
.github/workflows/release-codmods.yml renamed to .github/workflows/release-codemods.yml
@@ -1,4 +1,4 @@
-name: Release Codemods
+name: Release codemods
on:
push:
0 commit comments