Skip to content

Bump tough-cookie from 4.0.0 to 4.1.3 #103

Bump tough-cookie from 4.0.0 to 4.1.3

Bump tough-cookie from 4.0.0 to 4.1.3 #103

Workflow file for this run

name: checks
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version-file: ".nvmrc"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version-file: ".nvmrc"
- name: Install dependencies
run: npm ci
- name: Run lint checks
run: npm run lint
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version-file: ".nvmrc"
- name: Run prettier
run: npx prettier --check '**/*.md'
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version-file: ".nvmrc"
- name: Install dependencies
run: npm ci
- name: Run tests
run: |
export SEED=$(openssl rand -hex 16)
echo $SEED
npm run test