Skip to content

chore(deps): update external major (major) #1257

chore(deps): update external major (major)

chore(deps): update external major (major) #1257

Workflow file for this run

# Run this action only for pull requests from this repository
name: Tests
on:
pull_request:
types: [opened, synchronize, reopened, edited]
branches:
- main
jobs:
build:
if: github.repository_owner == 'adobe' # replace 'adobe' with repo owner
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '14'
- run: npm install
working-directory: test
- run: npm run lint
- run: npm test
working-directory: test
env:
CI: true