Skip to content

Bump awesome-lint from 0.18.2 to 0.18.3 #37

Bump awesome-lint from 0.18.2 to 0.18.3

Bump awesome-lint from 0.18.2 to 0.18.3 #37

Workflow file for this run

name: Tests
on: [push, pull_request]
env:
CI: true
jobs:
run:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node: [12, 14]
os: [ubuntu-latest]
steps:
- name: Clone repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set Node.js version
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install npm dependencies
run: yarn install
- name: Run tests
run: yarn test