Skip to content

CI run for

CI run for #2

Workflow file for this run

name: CI
run-name: CI run for ${{ github.head_ref }}
on:
workflow_dispatch: {}
pull_request:
branches:
- master
paths-ignore:
- '**/*.md'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Run linting
run: yarn run lint
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test