Skip to content

fix(deps): update all #2993

fix(deps): update all

fix(deps): update all #2993

Workflow file for this run

name: Web

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

View workflow run for this annotation

GitHub Actions / .github/workflows/web.yml

Invalid workflow file

(Line: 22, Col: 5): Unexpected value 'working_directory'
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
steps:
- uses: actions/checkout@v3.6.0
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3.9.1
with:
node-version: ${{ matrix.node }}
- name: Cache Node.js modules
uses: actions/cache@v3.5.0
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