Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Update CI/CD to use Node 18 & 19 #83

Update CI/CD to use Node 18 & 19

Update CI/CD to use Node 18 & 19 #83

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
paths-ignore:
- "**.md"
pull_request:
branches:
- main
paths-ignore:
- "**.md"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
needs: []
runs-on: ubuntu-latest
steps:
- name: "Set up GitHub Actions"
uses: actions/checkout@v3
- name: "Set up Node"
uses: actions/setup-node@v3
with:
node-version: "18"
- name: "Install Prettier"
run: npm install --global [email protected]
- name: "Check format"
run: make check
test:
needs: [lint]
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ "18", "19" ]
steps:
- name: "Set up GitHub Actions"
uses: actions/checkout@v3
- name: "Set up Node"
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: "Install dependencies"
run: npm install-clean
- name: "Run tests"
run: make test