Skip to content

build(deps): bump github/codeql-action from 2 to 3 (#776) #2778

build(deps): bump github/codeql-action from 2 to 3 (#776)

build(deps): bump github/codeql-action from 2 to 3 (#776) #2778

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["18", "16"]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run test
- run: npm run build
- name: Code Climate Coverage Action
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: 3c9c36dc44d794c8a3f398889936100a4df2b6913e5388ab824effed6cefcc31
with:
coverageCommand: npm run coverage
- run: npm run test:npm