Skip to content

build(deps): bump js-yaml from 3.14.1 to 3.14.2 #205

build(deps): bump js-yaml from 3.14.1 to 3.14.2

build(deps): bump js-yaml from 3.14.1 to 3.14.2 #205

Workflow file for this run

name: Lint
on:
- push
- pull_request
jobs:
deploy:
name: Test Code
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Node.js v16
uses: actions/setup-node@v1
with:
node-version: 16.13.0
- uses: actions/cache@v1
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles(format('{0}{1}', github.workspace, '/yarn.lock')) }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install deps
run: |
node -v
yarn -v
yarn --frozen-lockfile
env:
CI: true
NODE_OPTIONS: --max-old-space-size=4096
- name: '[API] Build'
id: build
run: yarn typecheck
env:
CI: true
- name: 'Run linter'
run: yarn lint:fix
id: lint
env:
CI: true