Skip to content

Bump @actions/core from 1.10.1 to 1.11.1 #729

Bump @actions/core from 1.10.1 to 1.11.1

Bump @actions/core from 1.10.1 to 1.11.1 #729

Workflow file for this run

name: 'Unit Tests'
on: [push]
jobs:
run-tests:
if: ${{ github.actor != 'dependabot[bot]' }}
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Build
run: npm ci
- name: Run tests & submit coverage report
uses: paambaati/codeclimate-action@v5.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: npm run test
coverageLocations: "coverage/lcov.info:lcov"
dependabot-tests:
if: ${{ github.actor == 'dependabot[bot]' }}
name: Dependabot Unit Tests
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Build
run: npm ci
- name: Run tests
run: npm run test