Skip to content

fix: date received fix #1542

fix: date received fix

fix: date received fix #1542

Workflow file for this run

name: Lint
on:
# Trigger the workflow on pull request,
# but only for the main branch
pull_request:
branches:
- main
jobs:
run-linters:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 18
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: yarn install
- name: Run linters
run: yarn lint