Skip to content

Bump uuid from 9.0.0 to 9.0.1 (#1570) #1974

Bump uuid from 9.0.0 to 9.0.1 (#1570)

Bump uuid from 9.0.0 to 9.0.1 (#1570) #1974

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request: {}
concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x
cache: yarn
- name: Install Dependencies
run: yarn install
- name: Run Tests
run: |
yarn run lint:js
yarn test
env:
CI: true