Skip to content

πŸ‘·β€β™€οΈ Move back to Node.js 16 for build #1

πŸ‘·β€β™€οΈ Move back to Node.js 16 for build

πŸ‘·β€β™€οΈ Move back to Node.js 16 for build #1

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16.x'
registry-url: 'https://npm.pkg.github.com'
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test:coverage
env:
COVERAGE_REPORTER: text
- name: Release
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
run: ./release.sh