Skip to content

Upgrade react-live #1706

Upgrade react-live

Upgrade react-live #1706

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Test
on:
push:
branches: [main, 'release/**']
pull_request:
branches: [main, 'release/**']
jobs:
test:
name: ${{ matrix.os }} (${{ matrix.node-version }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node-version: ['18', '20']
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.3.0
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: 'Build internal prerequisites'
run: yarn build
- name: Run Tests
run: yarn test
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'yarn'
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Prettier
run: yarn run prettier:ci
- name: Lint
run: yarn run lint