Skip to content

chore(deps-dev): bump @types/node from 18.15.0 to 20.8.6 #79

chore(deps-dev): bump @types/node from 18.15.0 to 20.8.6

chore(deps-dev): bump @types/node from 18.15.0 to 20.8.6 #79

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- run: echo "πŸŽ‰ The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "πŸ”Ž The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- run: echo "πŸ’‘ The ${{ github.repository }} repository has been cloned to the runner."
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: echo "πŸ–₯️ Node ${{ matrix.node-version }} is setup on runner."
- run: echo "πŸ–₯️ The workflow is now ready to test your code on the runner."
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test
- run: echo "🍏 This job's status is ${{ job.status }}."
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
verbose: true