Skip to content

chore: Update actions to support NodeJS 20 #64

chore: Update actions to support NodeJS 20

chore: Update actions to support NodeJS 20 #64

Workflow file for this run

name: Main CI & Coverage Reporting
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node 12
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
env:
CI: true
- name: Build
run: npm run build