Skip to content

Update articles title #417

Update articles title

Update articles title #417

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on: [push]
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.16.0
uses: actions/setup-node@v3.5.0
with:
node-version: 16.16.0
- name: Cache node modules
uses: actions/cache@v3
with:
path: node_modules
key: node_modules-v1-${{ hashFiles('yarn.lock') }}
restore-keys: |
node_modules-
- name: Install dependencies
run: yarn
- name: Run formatting checks
run: yarn format-check
- name: Run linting checks
run: yarn lint