Skip to content

[Snyk] Upgrade ky from 1.2.2 to 1.2.3 #159

[Snyk] Upgrade ky from 1.2.2 to 1.2.3

[Snyk] Upgrade ky from 1.2.2 to 1.2.3 #159

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the develop branch
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.14.2
uses: actions/setup-node@v1
with:
node-version: 16.14.2
- name: Install dependencies
run: npm i
- name: Lint
run: npm run lint
build_lib:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.14.2
uses: actions/setup-node@v1
with:
node-version: 16.14.2
- name: Install dependencies
run: npm i
- name: build
run: npm run build