Skip to content

Bump minimist from 1.2.5 to 1.2.8 #3440

Bump minimist from 1.2.5 to 1.2.8

Bump minimist from 1.2.5 to 1.2.8 #3440

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn test
- name: Run Stryker
run: yarn workspace gatsby-theme-atom-service stryker run
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1.0.0
with:
token: ${{secrets.CODECOV_TOKEN}}