Skip to content

Merge pull request #181 from jaredwray/upgrading-typescript-to-5.4.5 #506

Merge pull request #181 from jaredwray/upgrading-typescript-to-5.4.5

Merge pull request #181 from jaredwray/upgrading-typescript-to-5.4.5 #506

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Compile
run: npm run compile
- name: Testing
run: npm run test
- name: Code Coverage
uses: codecov/codecov-action@v1.0.15
with:
token: ${{ secrets.CODECOV_KEY }}