File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # yaml-language-server:$schema=https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/github-workflow.json
2+ name : CI
3+
4+ on :
5+ push :
6+ pull_request :
7+
8+ jobs :
9+ ci :
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
14+ - uses : oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # v2.0.2
15+ with :
16+ bun-version : latest
17+ - run : bun install --frozen-lockfile
18+ - run : bun tsc --noEmit
Original file line number Diff line number Diff line change 1+ # yaml-language-server:$schema=https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/github-workflow.json
2+ name : npm publish
3+
4+ on :
5+ push :
6+ tags :
7+ - ' *'
8+
9+ jobs :
10+ publish :
11+ runs-on : ubuntu-latest
12+ timeout-minutes : 10
13+ permissions :
14+ contents : read
15+ id-token : write
16+ steps :
17+ - uses : actions/checkout@v4
18+ with :
19+ fetch-depth : 0
20+
21+ - uses : actions/setup-node@v4
22+ with :
23+ registry-url : ' https://registry.npmjs.org'
24+ node-version : 24
25+
26+ - uses : oven-sh/setup-bun@v2
27+ - run : bun install --frozen-lockfile
28+
29+ # npm 11.5.1以降が必要
30+ - name : Update npm
31+ run : npm install -g npm@latest
32+
33+ - run : npm publish
You can’t perform that action at this time.
0 commit comments