Skip to content

0.3.1

0.3.1 #90

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['16.x', '18.x']
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Lint
run: npm run lint
- name: Test
run: npm run test -- --ci --coverage --maxWorkers=2
env:
CREDENTIALS_JSON: ${{ secrets.CREDENTIALS_JSON }}
BUCKET_NAME: ${{ secrets.BUCKET_NAME }}
PREFIX: github/${{ github.run_number }}_${{ github.run_attempt }}/node${{ matrix.node }}_${{ matrix.os }}/
- name: Build
run: npm run build
- name: Update coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}