Skip to content

build: Bump @babel/core from 7.22.9 to 7.22.11 #93

build: Bump @babel/core from 7.22.9 to 7.22.11

build: Bump @babel/core from 7.22.9 to 7.22.11 #93

Workflow file for this run

name: test
on: [push]
jobs:
lint:
runs-on: 'ubuntu-latest'
strategy:
matrix:
node: [14, 16, 18]
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]
# No point testing on Node 18 as Webpack 4 will always fail with it due
# to OpenSSL updates. We'll need to handle this before Node 18 hits LTS.
node: [14, 16, 18]
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