Skip to content

change test execution location to __tests__ #2

change test execution location to __tests__

change test execution location to __tests__ #2

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- name: Set Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: 22.x
- name: Run install
uses: borales/actions-yarn@v5
with:
cmd: install # will run `yarn install` command
- name: Test the app
uses: borales/actions-yarn@v5
with:
cmd: test # will run `yarn test` command
dir: __tests__