chore(deps-dev): Bump the dev-deps group across 1 directory with 5 updates #5421
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: Build and Test Code | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js lts/* | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
- name: Npm Install | |
run: npm ci | |
- name: Lint Code | |
run: npm run lint | |
- name: Build Sources | |
timeout-minutes: 2 | |
run: npm run build --if-present | |
- name: Execute Tests | |
run: npm run test | |
env: | |
CI: true | |
- name: Upload coverage | |
uses: coverallsapp/github-action@v2.2.3 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: ./tmp/coverage/lcov.info |