Skip to content

Commit

Permalink
[actions] cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Oct 30, 2024
1 parent d4fa400 commit 1afbba9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 22 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/node-aught.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,3 @@ jobs:
range: '< 10'
type: minors
command: npm run tests-only

node:
permissions:
contents: none
name: 'node < 10'
needs: [tests]
runs-on: ubuntu-latest
steps:
- run: 'echo tests completed'
9 changes: 0 additions & 9 deletions .github/workflows/node-tens.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,3 @@ jobs:
range: '>= 10'
type: minors
command: npm run tests-only

node:
permissions:
contents: none
name: 'node >= 10'
needs: [tests]
runs-on: ubuntu-latest
steps:
- run: 'echo tests completed'
10 changes: 7 additions & 3 deletions .github/workflows/ses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,29 @@ jobs:
fail-fast: false
matrix:
node-version:
- '23'
- '22'
- '20'
- '18'
- '16'
- '14'
- '12'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ljharb/actions/node/install@main
name: 'nvm install ${{ matrix.node-version }} && npm install'
with:
node-version: ${{ matrix.node-version }}
- run: npm run test:ses
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v3.1.5

SES:
permissions:
contents: none
needs: [tests]
runs-on: ubuntu-latest
steps:
- run: 'echo tests completed'
- run: true

0 comments on commit 1afbba9

Please sign in to comment.