-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: brute force update linting and tests
Signed-off-by: Tierney Cyren <[email protected]>
- Loading branch information
Showing
15 changed files
with
265 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: "Test Suite: Linter (aliases)" | ||
|
||
on: | ||
push: | ||
pull_request: | ||
paths: | ||
- 'aliases/**' | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
tests: | ||
if: github.repository == 'cutenode/nodevu' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v4 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: current | ||
- name: Run npm install -w aliases | ||
run: npm install -w aliases | ||
- name: Run npm run lint -w aliases | ||
run: npm run lint -w aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: "Test Suite: Linter (core)" | ||
|
||
on: | ||
push: | ||
pull_request: | ||
paths: | ||
- 'core/**' | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
tests: | ||
if: github.repository == 'cutenode/nodevu' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v4 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: current | ||
- name: Run npm install -w core | ||
run: npm install -w core | ||
- name: Run npm run lint -w core | ||
run: npm run lint -w core |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: "Test Suite: Linter (earliest)" | ||
|
||
on: | ||
push: | ||
pull_request: | ||
paths: | ||
- 'earliest/**' | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
tests: | ||
if: github.repository == 'cutenode/nodevu' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v4 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: current | ||
- name: Run npm install -w earliest | ||
run: npm install -w earliest | ||
- name: Run npm run lint -w earliest | ||
run: npm run lint -w earliest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: "Test Suite: Linter (parsefiles)" | ||
|
||
on: | ||
push: | ||
pull_request: | ||
paths: | ||
- 'parsefiles/**' | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
tests: | ||
if: github.repository == 'cutenode/nodevu' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v4 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: current | ||
- name: Run npm install -w parsefiles | ||
run: npm install -w parsefiles | ||
- name: Run npm run lint -w parsefiles | ||
run: npm run lint -w parsefiles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: "Test Suite: Linter (ranges)" | ||
|
||
on: | ||
push: | ||
pull_request: | ||
paths: | ||
- 'ranges/**' | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
tests: | ||
if: github.repository == 'cutenode/nodevu' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v4 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: current | ||
- name: Run npm install -w ranges | ||
run: npm install -w ranges | ||
- name: Run npm run lint -w ranges | ||
run: npm run lint -w ranges |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: "Test Suite: Linter (static)" | ||
|
||
on: | ||
push: | ||
pull_request: | ||
paths: | ||
- 'static/**' | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
tests: | ||
if: github.repository == 'cutenode/nodevu' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v4 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: current | ||
- name: Run npm install -w static | ||
run: npm install -w static | ||
- name: Run npm run lint -w static | ||
run: npm run lint -w static |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: "Test Suite: Linter (translate)" | ||
|
||
on: | ||
push: | ||
pull_request: | ||
paths: | ||
- 'translate/**' | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
tests: | ||
if: github.repository == 'cutenode/nodevu' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v4 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: current | ||
- name: Run npm install -w translate | ||
run: npm install -w translate | ||
- name: Run npm run lint -w translate | ||
run: npm run lint -w translate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: "Test Suite: @nodevu/core" | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'earliest/**' | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
tests: | ||
if: github.repository == 'cutenode/nodevu' | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [current, lts/*, lts/-1, lts/-2] | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v4 | ||
- name: Setup Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Install most recent npm | ||
run: npm install -g npm | ||
- name: Run npm install -w earliest | ||
run: npm install -w earliest | ||
- name: Run npm test -w earliest | ||
run: npm test -w earliest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: "Test Suite: @nodevu/core" | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'parsefiles/**' | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
tests: | ||
if: github.repository == 'cutenode/nodevu' | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [current, lts/*, lts/-1, lts/-2] | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v4 | ||
- name: Setup Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Install most recent npm | ||
run: npm install -g npm | ||
- name: Run npm install -w parsefiles | ||
run: npm install -w parsefiles | ||
- name: Run npm test -w parsefiles | ||
run: npm test -w parsefiles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters