Skip to content

Social login copy

Social login copy #612

Workflow file for this run

name: PR Actions
on:
pull_request:
concurrency:
group: ${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
checks:
defaults:
run:
working-directory: ./packages/near-fast-auth-signer
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@v3
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'
- name: Install NPM Dependencies
run: yarn install
- name: Run Linting
run: yarn lint