Skip to content

Bump actions/setup-node from 3 to 4 #29

Bump actions/setup-node from 3 to 4

Bump actions/setup-node from 3 to 4 #29

Workflow file for this run

name: Build Status
on:
push:
branches:
- main
tags:
- v*
paths-ignore:
- CONTRIBUTING.md
- LICENSE
- README.md
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: use node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: package-lock.json
- name: install dependencies
run: npm install
- name: build
run: npm run build
- name: format
run: npm run format
- name: lint
run: npm run lint
- name: test
run: npm run test
- name: upload coverage
uses: codecov/codecov-action@v3