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

build(deps-dev): bump @typescript-eslint/parser from 5.59.6 to 5.62.0 #573

build(deps-dev): bump @typescript-eslint/parser from 5.59.6 to 5.62.0

build(deps-dev): bump @typescript-eslint/parser from 5.59.6 to 5.62.0 #573

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3 # checkout the repo
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn # install packages
- name: Run the tests
run: yarn ci # run tests (configured to use jest-junit reporter)
- name: Upload results
uses: actions/upload-artifact@v3 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
name: test-results
path: reports/jest-junit.xml