Summary: This diff bumps Node JS to `v18` in CI Pipeline. Related PR: 1. https://github.com/facebook/flipper/issues/4897 ## Changelog [General] [Changed] - Bump Node JS to `v18` in CI Pipeline Pull Request resolved: https://github.com/facebook/flipper/pull/4898 Test Plan: - Should pass tests & builds successfully Reviewed By: lblasa Differential Revision: D47128828 Pulled By: passy fbshipit-source-id: b8d829b273898bf5e297560fbbdbafba80285b33
24 lines
419 B
YAML
24 lines
419 B
YAML
name: PKG Node CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
pkg-directory: ./desktop/pkg
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '18.x'
|
|
- name: install
|
|
working-directory: ${{env.pkg-directory}}
|
|
run: yarn
|
|
- name: run
|
|
working-directory: ${{env.pkg-directory}}
|
|
run: bin/run
|