Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Enhancement: Upgrade dependency versoin #2915

Enhancement: Upgrade dependency versoin

Enhancement: Upgrade dependency versoin #2915

Workflow file for this run

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