Skip to content

chore(deps): update coverallsapp/github-action action to v2.3.3 #405

chore(deps): update coverallsapp/github-action action to v2.3.3

chore(deps): update coverallsapp/github-action action to v2.3.3 #405

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Install Packages
run: yarn install
- name: Lint
run: yarn lint
- name: Build
run: yarn build
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 19.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Packages
run: yarn install --ignore-engines
- name: Test
run: yarn test
test-and-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Install Packages
run: yarn install --ignore-engines
- name: Test
run: yarn cover
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@43f11c4e058174f808ee9cd63701b6c42fe3f5e3 # v2.3.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}