Skip to content

Commit

Permalink
Update Yarn (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelOnFira authored Jun 17, 2023
1 parent 1e12712 commit d96e0e2
Show file tree
Hide file tree
Showing 9 changed files with 4,135 additions and 1,800 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
dist/** -diff linguist-generated=true
/.yarn/releases/** binary
/.yarn/plugins/** binary
4 changes: 3 additions & 1 deletion .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:
node-version: 16.x

- name: Install dependencies
run: yarn install --frozen-lockfile
run: |
yarn set version berry
yarn install --frozen-lockfile
- name: Rebuild the dist/ directory
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: |
yarn set version berry
yarn install --frozen-lockfile
- run: |
yarn run all
Expand Down
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,12 @@ Thumbs.db
# Ignore built ts files
__tests__/runner/*
lib/**/*

# Yarn v3
.pnp.*
.yarn/cache
.yarn/patches
.yarn/plugins
.yarn/sdks
.yarn/versions
.yarn/install-state.gz
874 changes: 874 additions & 0 deletions .yarn/releases/yarn-3.6.0.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-3.6.0.cjs
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "typescript-action",
"name": "create-envfile",
"version": "2.0.0",
"private": true,
"description": "TypeScript template action",
"description": "Github Action to create a .env file with Github Secrets ",
"main": "lib/main.js",
"scripts": {
"build": "tsc --project tsconfig.build.json",
Expand All @@ -14,14 +14,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
"url": "git+https://github.com/SpicyPizza/create-envfile"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"author": "Forest Anderson",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0"
Expand All @@ -37,5 +37,6 @@
"js-yaml": "^4.1.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
}
},
"packageManager": "yarn@3.6.0"
}
Loading

0 comments on commit d96e0e2

Please sign in to comment.