Skip to content

Added a workflow to run tests. #1

Added a workflow to run tests.

Added a workflow to run tests. #1

Workflow file for this run

# https://github.com/marketplace/actions/github-action-for-yarn
name: Run Tests
on:
push:
jobs:
build:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
name: Checkout
- uses: borales/[email protected]
name: Install Dependencies
with:
cmd: install
# - uses: borales/[email protected]
# name: Lint
# with:
# cmd: lint # will run `yarn lint` command
- uses: borales/[email protected]
with:
cmd: test # will run `yarn test` command