Skip to content

chore(deps-dev): bump semantic-release from 19.0.2 to 19.0.3 #1062

chore(deps-dev): bump semantic-release from 19.0.2 to 19.0.3

chore(deps-dev): bump semantic-release from 19.0.2 to 19.0.3 #1062

Workflow file for this run

name: Run Lint and Tests
on:
push:
branches-ignore:
- master
- alpha
- beta
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: |
npm install
env:
CI: true
- name: Lint Files
run: |
npm run lint:check
env:
CI: true
- name: Check File Formatting
run: |
npm run format:check
env:
CI: true
- name: Run Tests
run: |
npm run test:ci
env:
CI: true