Merge pull request #1249 from anton-iskryzhytskyi/fix/allow_describe_… #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: Build and Test | |
jobs: | |
build: | |
name: Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [12, 14, 16, 17] | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: yarn | |
- name: Install Yarn | |
run: npm install -g yarn | |
- name: Install | |
run: yarn install --ignore-scripts | |
- name: Build | |
run: yarn run build | |
- name: Lint | |
run: yarn run lint | |
- name: Test | |
run: yarn run test |