Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Bump @typescript-eslint/parser from 6.2.0 to 7.8.0 #373

Bump @typescript-eslint/parser from 6.2.0 to 7.8.0

Bump @typescript-eslint/parser from 6.2.0 to 7.8.0 #373

Workflow file for this run

name: Build & Test
on: [ push ]
jobs:
build:
name: Build 🏗️ & Test 🧪
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize Node
uses: actions/setup-node@v3
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- name: Install deps
run: npm ci
- name: Build application
run: npm run build
- name: Run tests
run: npm run test