Skip to content

Merge pull request #10 from gabrielcsapo/main #19

Merge pull request #10 from gabrielcsapo/main

Merge pull request #10 from gabrielcsapo/main #19

Workflow file for this run

name: CI
on:
push:
branches:
- main
- 'v*' # older version branches
tags:
- '*'
pull_request: {}
jobs:
test:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['^14.10', '16', '18']
steps:
- uses: actions/checkout@v3
- uses: volta-cli/action@v3
with:
node-version: ${{ matrix.node-version }}
- name: install dependencies
run: yarn
- name: lint
run: yarn lint
- name: test
run: yarn test