Skip to content

Bump coverallsapp/github-action from 2.3.2 to 2.3.3 #118

Bump coverallsapp/github-action from 2.3.2 to 2.3.3

Bump coverallsapp/github-action from 2.3.2 to 2.3.3 #118

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [20.x]
os: [ubuntu-latest]
steps:
- name: Setup Repo
uses: actions/checkout@v4
- name: Uses node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install all workspaces
run: yarn install --immutable
- name: Seutp workspaces
run: yarn compile
- name: Lint
run: yarn format && yarn lint
- name: Test
run: yarn test