Skip to content

CI

CI #177

Workflow file for this run

name: CI
on:
push:
branches:
- main
- 'v*' # older version branches
tags:
- '*'
pull_request: {}
schedule:
- cron: '0 6 * * 0' # weekly, on sundays
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v3
with:
node-version: 18.x
- name: install yarn
run: npm install -g yarn
- name: install dependencies
run: yarn install --frozen-lockfile
- name: linting
run: yarn lint
test:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
node: ['14', '18']
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: install yarn
run: npm install -g yarn
- name: install dependencies
run: yarn install --frozen-lockfile
- name: test
run: yarn test
floating-test:
name: Floating dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: install yarn
run: npm install -g yarn
- name: install dependencies
run: yarn install --no-lockfile
- name: test
run: yarn test