Skip to content

Merge pull request #1774 from tresende/dependabot/npm_and_yarn/main/e… #1345

Merge pull request #1774 from tresende/dependabot/npm_and_yarn/main/e…

Merge pull request #1774 from tresende/dependabot/npm_and_yarn/main/e… #1345

Workflow file for this run

name: Tests
on:
push:
branches:
- main
jobs:
install-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '22'
- uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- run: yarn
- run: yarn type-check
- run: yarn test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}