Skip to content

chore: upgrade packages versions #155

chore: upgrade packages versions

chore: upgrade packages versions #155

name: CI
on: [push, pull_request]
jobs:
checks:
name: Linters
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['16.x']
steps:
- uses: actions/checkout@v1
- name: Setting up Node.js (v${{ matrix.node-version }}.x)
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install --frozen-lockfile --legacy-peer-deps
- run: npm run lint
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['16.x']
fail-fast: false
steps:
- uses: actions/checkout@v1
- name: Setting up Node.js (v${{ matrix.node-version }}.x)
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install --frozen-lockfile --legacy-peer-deps
- run: npm run test:ci
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['16.x']
steps:
- uses: actions/checkout@v1
- name: Setting up Node.js (v${{ matrix.node-version }}.x)
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install --frozen-lockfile --legacy-peer-deps
- run: npm run build