Skip to content

Commit

Permalink
#73 update env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene-serb committed Mar 5, 2023
1 parent 632f6be commit a373af4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/quality-checking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,27 @@ on:
- main

env:
node-version: 18.x
os: ubuntu-latest
NODE_VERSION: 18.x
OS: ubuntu-latest

jobs:
lint:
name: Lint
uses: ./.github/workflows/lint.yml
with:
os: ${{ env.os }}
node-version: ${{ env.node-version }}
os: $OS
node-version: $NODE_VERSION

test:
name: Test
uses: ./.github/workflows/test.yml
with:
os: ${{ env.os }}
node-version: ${{ env.node-version }}
os: $OS
node-version: $NODE_VERSION

build:
name: Build
uses: ./.github/workflows/build.yml
with:
os: ${{ env.os }}
node-version: ${{ env.node-version }}
os: $OS
node-version: $NODE_VERSION

0 comments on commit a373af4

Please sign in to comment.