Skip to content

chore(main): release 1.4.5 (#83) #166

chore(main): release 1.4.5 (#83)

chore(main): release 1.4.5 (#83) #166

Workflow file for this run

# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
# ******** NOTE ********
name: "CI"
on:
push:
branches: [main]
pull_request:
# The branches below must be a subset of the branches above
branches: [main, next]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: ["18", "20"]
name: Build with NodeJS v${{ matrix.node }}
env:
FORCE_COLOR: 1
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Test project
run: yarn run test
- name: CodeCov
uses: codecov/codecov-action@v2