Skip to content

Commit

Permalink
CI: Remove Unused env var (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2smith authored Jun 9, 2024
1 parent a97351b commit 70c2986
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,38 +8,40 @@ on:
jobs:
build:
runs-on: ubuntu-latest
env:
DUNE_API_KEY: ${{ secrets.DUNE_API_KEY }}
strategy:
matrix:
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: yarn
- run: yarn build
- run: yarn lint
- run: |
yarn
yarn lint
yarn build
test:
name: Run Tests
runs-on: ubuntu-latest
env:
BASIC_API_KEY: ${{ secrets.BASIC_API_KEY }}
PLUS_API_KEY: ${{ secrets.PLUS_API_KEY }}
strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: "20.x"
cache: "npm"
- run: yarn
- run: yarn test
- run: |
yarn
yarn test

0 comments on commit 70c2986

Please sign in to comment.