diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f60dfb1..b61e142 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,15 +9,15 @@ jobs: runs-on: ubuntu-latest env: - node-version: 18.x + NODE_VERSION: 18.x steps: - uses: actions/checkout@v3 - - name: Use Node.js ${{ node-version }} + - name: Use Node.js ${{ env.NODE_VERSION }} uses: actions/setup-node@v3 with: - node-version: ${{ node-version }} + node-version: ${{ env.NODE_VERSION }} - name: Build run: |