Skip to content

Commit 82a0784

Browse files
committed
chore(release): GitHub Token test
1 parent 516533f commit 82a0784

File tree

1 file changed

+23
-15
lines changed

1 file changed

+23
-15
lines changed

.github/workflows/ci.yml

+23-15
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,34 @@ concurrency:
1313
jobs:
1414
build:
1515
runs-on: ubuntu-latest
16-
strategy:
17-
matrix:
18-
nodejs: [18, 19, 20, 21, 22]
16+
permissions: write-all
17+
# strategy:
18+
# matrix:
19+
# nodejs: [18, 19, 20, 21, 22]
1920

2021
steps:
2122
- uses: actions/checkout@v4
2223
- uses: actions/setup-node@v4
2324
with:
24-
node-version: ${{ matrix.nodejs }}
25+
# node-version: ${{ matrix.nodejs }}
26+
node-version-file: .nvmrc
2527
cache: yarn
2628
- run: yarn install --immutable
27-
- run: yarn compile
28-
- run: yarn lint
29-
- run: yarn test
30-
- run: yarn docs
31-
- uses: tj-actions/verify-changed-files@v20
32-
with:
33-
files: docs/**
34-
fail-if-changed: true
35-
fail-message: >-
36-
Uncommited API Reference docs found! Run `yarn docs` locally and
37-
commit the changes.
29+
- run: git ls-remote --heads 'git@github.com:JoseLion/lynxts.git'
30+
id: head-result
31+
working-directory: ./packages/core
32+
env:
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34+
- run: echo "${{ steps.head-result.outputs }}"
35+
# - run: yarn compile
36+
# - run: yarn lint
37+
# - run: yarn test
38+
# - run: yarn docs
39+
# - uses: tj-actions/verify-changed-files@v20
40+
# with:
41+
# files: docs/**
42+
# fail-if-changed: true
43+
# fail-message: >-
44+
# Uncommited API Reference docs found! Run `yarn docs` locally and
45+
# commit the changes.
3846

0 commit comments

Comments
 (0)