Skip to content

Commit

Permalink
chore: update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
prevwong committed May 21, 2021
1 parent bd726c7 commit 45f42c5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 81 deletions.
68 changes: 0 additions & 68 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: Install dependencies
if: steps.cache-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
run: yarn install --immutable

- name: Build
run: yarn build
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:

# - name: Install dependencies
# if: steps.cache-modules.outputs.cache-hit != 'true'
# run: yarn install --frozen-lockfile
# run: yarn install --immutable

# - name: Symlink
# run: yarn scaffold
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,8 @@ jobs:

- name: Install dependencies
if: steps.cache-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile

- name: Symlink
run: yarn scaffold

run: yarn install --immutable

- name: Build
run: yarn build

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ jobs:
with:
node-version: 10.x

- run: yarn install --frozen-lockfile
- run: yarn install --immutable
- run: yarn release
7 changes: 2 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,11 @@
"release": "run-s lint clean build test release:npm",
"release:npm": "./scripts/release.sh",
"publish:beta": "lerna version prerelease --preid beta --force-publish --yes",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"cy:test": "cypress run",
"cy:open": "cypress open",
"test": "jest",
"test:watch": "cross-env NODE_ENV=test jest --watchAll",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"scaffold": "lerna clean --yes && yarn run lerna:bootstrap",
"lerna:link": "lerna link",
"lerna:bootstrap": "lerna bootstrap",
"lerna:version": "lerna version --conventional-commits --yes",
"lerna:prerelease": "yarn lerna:version --conventional-prerelease --yes",
"lerna:publish": "lerna publish from-git --yes"
Expand Down

0 comments on commit 45f42c5

Please sign in to comment.