Skip to content

Commit 298d4aa

Browse files
committed
Remove build step
1 parent 1949801 commit 298d4aa

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

.github/workflows/main.yml

+13-14
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
11
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
22
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
33

4-
name: Lint, Test, and Build
4+
name: Lint and Test
55

66
on:
77
push:
8-
branches: [ "main" ]
8+
branches: ["main"]
99
pull_request:
10-
branches: [ "main" ]
10+
branches: ["main"]
1111

1212
jobs:
13-
lint-test-build:
13+
lint-test:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
18-
- name: Use Node 22
19-
uses: actions/setup-node@v4
20-
with:
21-
node-version: 22.x
22-
cache: 'npm'
23-
- run: npm install
24-
- run: npm run lint
25-
- run: npm test
26-
- run: npm run build
17+
- uses: actions/checkout@v4
18+
- name: Use Node 22
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: 22.x
22+
cache: "npm"
23+
- run: npm install
24+
- run: npm run lint
25+
- run: npm test

0 commit comments

Comments
 (0)