Skip to content

build: Switch to ubuntu-latest for builds #298

build: Switch to ubuntu-latest for builds

build: Switch to ubuntu-latest for builds #298

Workflow file for this run

name: node_js CI
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Nodejs
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Setup npm
run: npm i -g [email protected]
- name: Install dependencies
run: npm ci
- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: v1-npm-deps-${{ hashFiles('**/package-lock.json') }}
restore-keys: v1-npm-deps-
- name: Unit Tests
run: npm run test
- name: Build
run: npm run build
- name: Validation Checks
run: ./.github/validate_changes_for_merge.sh
- name: Run Coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true