Skip to content

Commit 9ad3f3f

Browse files
committed
feat: cleanup and update
1 parent 4a913c6 commit 9ad3f3f

42 files changed

Lines changed: 4678 additions & 73067 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/main.yml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,20 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- name: checkout
13-
uses: actions/checkout@v1
12+
- name: Checkout
13+
uses: actions/checkout@v4
14+
1415
- name: Configure CI Git User
1516
run: |
1617
git config --global user.name '@cirocfc'
1718
git config --global user.email 'ciro.cfc@gmail.com'
18-
git remote set-url origin https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/cirocfc/yet-another
19+
git remote set-url origin https://$GITHUB_ACTOR:$GH_TOKEN@github.com/cirocfc/yet-another
1920
env:
20-
GITHUB_TOKEN: ${{ secrets.GH_TK }}
21-
- name: Checkout and pull branch
22-
run: git checkout "${GITHUB_REF:11}" && git pull
21+
GH_TOKEN: ${{ secrets.GH_TK }}
22+
2323
- name: Install Packages
2424
run: yarn install
25+
2526
- name: Authenticate with Registry
2627
run: |
2728
echo "@cirocfc:registry=http://registry.npmjs.org/" > .npmrc
@@ -30,9 +31,15 @@ jobs:
3031
npm whoami
3132
env:
3233
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
34+
35+
- name: Setup Node.js
36+
uses: actions/setup-node@v4
37+
with:
38+
node-version: 20
39+
3340
- name: Publish package
3441
run: yarn release
3542
env:
36-
GH_TOKEN: ${{ secrets.GH_TK }}
37-
GITHUB_TOKEN: ${{ secrets.GH_TK }}
43+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
44+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
3845
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
.yarn
22
.pnp.*
3+
4+
/.nx/workspace-data

.vscode/pnpify/prettier/index.js

Lines changed: 0 additions & 18 deletions
This file was deleted.

.vscode/pnpify/prettier/package.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)