Skip to content

build(deps-dev): bump @types/node from 20.8.0 to 20.8.6 #11

build(deps-dev): bump @types/node from 20.8.0 to 20.8.6

build(deps-dev): bump @types/node from 20.8.0 to 20.8.6 #11

Workflow file for this run

name: Lint And Build
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --freeze-lockfile
- name: Lint
run: yarn lint
build:
name: Build
runs-on: ubuntu-latest
needs: [lint]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --freeze-lockfile
- name: Build
run: yarn build
- name: Archive production artifacts
if: githmkdiub.event.pull_request.merged == true

Check failure on line 48 in .github/workflows/pull_request.yml

View workflow run for this annotation

GitHub Actions / Lint And Build

Invalid workflow file

The workflow is not valid. .github/workflows/pull_request.yml (Line: 48, Col: 13): Unrecognized named-value: 'githmkdiub'. Located at position 1 within expression: githmkdiub.event.pull_request.merged == true
uses: actions/upload-artifact@v3
with:
name: build
path: |
build