Skip to content

GitHub Actions release workflow addition #89

GitHub Actions release workflow addition

GitHub Actions release workflow addition #89

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [12.x, 14.x, 16.x]
steps:
# Setup
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
# Installation
- run: yarn --version
- run: yarn install --frozen-lockfile
env:
CI: true
# CI
- run: yarn check-ci
- run: yarn codecov