Bump @babel/traverse from 7.23.0 to 7.23.2 in /nielsen/example #343
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
- name: Run npm | |
run: npm ci --prefix adobe && | |
npm ci --prefix agama && | |
npm ci --prefix conviva && | |
npm ci --prefix comscore && | |
npm ci --prefix nielsen && | |
npm ci --prefix youbora | |
- name: Check lint | |
run: npm run lint --prefix adobe && | |
npm run lint --prefix agama && | |
npm run lint --prefix conviva && | |
npm run lint --prefix comscore && | |
npm run lint --prefix nielsen && | |
npm run lint --prefix youbora |