Skip to content

chore!: drop Node.js 14 support, require Node.js 16, bump got to 13.0 #80

chore!: drop Node.js 14 support, require Node.js 16, bump got to 13.0

chore!: drop Node.js 14 support, require Node.js 16, bump got to 13.0 #80

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
timeout-minutes: 20
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x']
os: [ubuntu-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install
run: yarn install
- name: Lint
run: yarn lint
- name: Test
env:
SENDLE_ID: ${{ secrets.SENDLE_ID }}
SENDLE_API_KEY: ${{ secrets.SENDLE_API_KEY }}
run: yarn test --coverage
- name: Build
run: yarn build