This repository has been archived by the owner on Jun 10, 2024. It is now read-only.
chore(deps-dev): bump @testing-library/user-event from 14.5.1 to 14.5.2 #2912
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
on: ['push', 'pull_request'] | |
name: Coveralls | |
jobs: | |
build: | |
name: Reporter | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: npm | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install npm dependencies | |
# Skip post-install scripts here, as a malicious script could steal NODE_AUTH_TOKEN. | |
run: 'npm ci --ignore-scripts --include=optional' | |
shell: bash | |
env: | |
NODE_AUTH_TOKEN: ${{ github.token }} | |
- name: Run tests | |
run: 'npm run test:ci' | |
- name: Coveralls | |
uses: coverallsapp/github-action@3dfc5567390f6fa9267c0ee9c251e4c8c3f18949 |