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

chore(deps): replace devdependency babel-eslint with @babel/eslint-pa… #1089

chore(deps): replace devdependency babel-eslint with @babel/eslint-pa…

chore(deps): replace devdependency babel-eslint with @babel/eslint-pa… #1089

Workflow file for this run

name: Test
on:
push:
branches:
- 'feature/**'
- 'hotfix/**'
- 'renovate/**'
jobs:
build:
name: Test & Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [12]
steps:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: cache node_modules
uses: actions/cache@v3
id: cache
with:
path: node_modules
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- name: Test
run: npm run test