Skip to content

fix(deps): update all (major) #2372

fix(deps): update all (major)

fix(deps): update all (major) #2372

Workflow file for this run

name: Web
on:
push:
tags:
- v*
branches:
- master
paths:
- 'web/**'
- ".github/workflows/web.yml"
pull_request:
paths:
- 'web/**'
- ".github/workflows/web.yml"
jobs:
build-test-lint:
strategy:
matrix:
node: ['10.x']
runs-on: ubuntu-latest
working_directory: web

Check failure on line 22 in .github/workflows/web.yml

View workflow run for this annotation

GitHub Actions / Web

Invalid workflow file

The workflow is not valid. .github/workflows/web.yml (Line: 22, Col: 5): Unexpected value 'working_directory'
steps:
- uses: actions/checkout@v4.1.5
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node }}
- name: Cache Node.js modules
uses: actions/cache@v4.0.2
with:
path: web/node_modules
key: ${{ runner.OS }}-node-${{ matrix.node }}-v1-${{ hashFiles('web/yarn.lock') }}
restore-keys: ${{ runner.OS }}-node-${{ matrix.node }}-v1-
- run: npm install
- run: npm run build
- run: npm run test:CI
- run: npm run lint