Skip to content

chore: update backgrounds #439

chore: update backgrounds

chore: update backgrounds #439

Workflow file for this run

name: Node CI
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 14
registry-url: 'https://npm.pkg.github.com'
scope: '@yproximite'
always-auth: true
- name: Cache Node.js dependencies
uses: actions/cache@v2
with:
path: |
$(yarn cache dir)
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- run: yarn install --frozen-lockfile
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: yarn lint:js --no-fix
- run: yarn tsc --noEmit
- run: yarn build