Skip to content

feat: update, read and delete user authenticated #6

feat: update, read and delete user authenticated

feat: update, read and delete user authenticated #6

Workflow file for this run

name: CI
on: [pull_request]
jobs:
lint:
name: Check linting
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.11.1]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Restoring yarn cache file
uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn
- name: Run ESLint
run: yarn lint