Skip to content

Bump @actions/github from 5.1.1 to 6.0.0 #1485

Bump @actions/github from 5.1.1 to 6.0.0

Bump @actions/github from 5.1.1 to 6.0.0 #1485

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
FORCE_COLOR: 3
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 16
- 18
steps:
- name: Checkout Repo
uses: actions/checkout@v3.6.0
- name: Install Node
uses: actions/setup-node@v3.8.1
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run build
- run: npm test
- name: Upload Test Coverage
uses: codecov/codecov-action@v3.1.4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/clover.xml
flags: unittests