Skip to content

Update dependency express to v4.21.2 - autoclosed #439

Update dependency express to v4.21.2 - autoclosed

Update dependency express to v4.21.2 - autoclosed #439

Workflow file for this run

name: frontend
on:
pull_request:
branches:
- main
paths:
- "web/**"
env:
UBUNTU_VERSION: ubuntu-22.04
NODE_VERSION: 18
jobs:
lint:
runs-on: ${{ env.UBUNTU_VERSION }}

Check failure on line 16 in .github/workflows/pr-frontend.yaml

View workflow run for this annotation

GitHub Actions / frontend

Invalid workflow file

The workflow is not valid. .github/workflows/pr-frontend.yaml (Line: 16, Col: 14): Unrecognized named-value: 'env'. Located at position 1 within expression: env.UBUNTU_VERSION .github/workflows/pr-frontend.yaml (Line: 27, Col: 14): Unrecognized named-value: 'env'. Located at position 1 within expression: env.UBUNTU_VERSION
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: install
run: make web/install
- name: lint
run: make web/lint
test:
runs-on: ${{ env.UBUNTU_VERSION }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: install
run: make web/install
- name: test
run: make web/test