Skip to content

chore(deps-dev): bump core-js from 3.39.0 to 3.40.0 #735

chore(deps-dev): bump core-js from 3.39.0 to 3.40.0

chore(deps-dev): bump core-js from 3.39.0 to 3.40.0 #735

Workflow file for this run

name: lints
on:
push:
branches-ignore:
- deploy
tags-ignore:
- "*"
jobs:
# Set the job key. The key is displayed as the job name
# when a job name is not provided
js:
timeout-minutes: 10
# Name the Job
name: javascript
# Set the type of machine to run on
runs-on: ubuntu-latest
steps:
# Checks out a copy of your repository on the ubuntu-latest machine
- name: Checkout code
uses: actions/checkout@v4
- name: node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install modules
run: npm ci
- name: Run ESLint
run: npm run lint