Skip to content

Bump GitHub workflow actions to latest versions #57

Bump GitHub workflow actions to latest versions

Bump GitHub workflow actions to latest versions #57

Workflow file for this run

name: CI
on:
push:
branches: [develop]
pull_request:
branches: [develop]
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 14.20.x
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
lint:
name: Lint
needs: build
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 14.20.x
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
test:
name: Test on OS ${{ matrix.os }} with NodeJS ${{ matrix.node-version }}
needs: build
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# See <https://nodejs.org/en/about/releases/>
node-version: [14.20.0, 16.17.0, 18.9.0]
# See <https://github.com/actions/runner-images#available-images>
os: [ubuntu-22.04, windows-2022, macos-12]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test