chore(deps): bump fast-xml-parser from 5.4.1 to 5.5.7 in /bigquery-firestore-export/functions #2064
This file contains hidden or 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: validate | |
| on: | |
| pull_request: | |
| jobs: | |
| linting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2-beta | |
| with: | |
| node-version: 22 | |
| - name: NPM Install | |
| run: npm ci --ignore-scripts | |
| - name: Bootstrap monorepo dependencies | |
| run: npx lerna bootstrap --no-ci --ignore-scripts | |
| - name: Lint | |
| run: npm run lint | |
| - name: Compile | |
| run: npm run compile | |
| # test: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v2 | |
| # - uses: actions/setup-node@v2-beta | |
| # with: | |
| # node-version: '14' | |
| # - name: NPM Install | |
| # run: yarn | |
| # - name: Jest Tests | |
| # run: yarn run test |