Skip to content

build: Bump @babel/core from 7.22.15 to 7.23.5 #152

build: Bump @babel/core from 7.22.15 to 7.23.5

build: Bump @babel/core from 7.22.15 to 7.23.5 #152

Workflow file for this run

name: test
on: [push]
jobs:
lint:
runs-on: 'ubuntu-latest'
strategy:
matrix:
node: [16, 18, 20]
name: Lint (Node ${{ matrix.node }})
steps:
- uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
- run: npm -g install npm
if: matrix.node == 14
- run: npm ci
- run: npm run stylelint
- run: npm run eslint
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node: [16, 18, 20]
name: Test (Node ${{ matrix.node }}, ${{ matrix.os }})
steps:
- uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
- run: npm -g install npm
if: matrix.node == 14
- run: npm ci
- run: npm test
env:
CI: true