Update babel monorepo to v7.22.10 #5013
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node CI | |
on: [push] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node-version: [16.x] | |
include: | |
- os: macos-latest | |
node-version: 16.x | |
# TODO : add Windows build | |
#- os: windows-latest | |
# node-version: 16.x | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3.7.0 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- name: Install Java | |
uses: actions/setup-java@v3.11.0 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- name: yarn install | |
run: yarn install | |
- name: yarn build | |
run: yarn build | |
- name: Linting | |
run: yarn lint:ci | |
- name: Testing | |
run: yarn test:ci | |
env: | |
CI: true |