Skip to content

ci: Add tests.yml - github actions workflow for running tests #1

ci: Add tests.yml - github actions workflow for running tests

ci: Add tests.yml - github actions workflow for running tests #1

Workflow file for this run

name: tests
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Set up Yarn
run: |
corepack enable
yarn --version
- name: Install dependencies
run: yarn install
- name: Run linter
run: yarn run eslint --ext .jsx,.js .