Skip to content

Auth screen implementation #9

Auth screen implementation

Auth screen implementation #9

Workflow file for this run

name: ci
on:
pull_request:
jobs:
build:
permissions: write-all
name: ci
environment: dev
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: ^16
- uses: actions/cache@v2
id: yarn-cache
with:
path: '**/node_modules'
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile
- name: Run Linter
run: yarn lint
- name: Comment with Test Coverage
uses: dkershner6/jest-coverage-commenter-action@v1
with:
github_token: '${{ secrets.GITHUB_TOKEN }}'
test_command: 'yarn test:coverage'