Files
flipper/.github/workflows/nodejs-pkg.yml
Pranav Yadav 1212e52821 nodejs-pkg - Bump actions/setup-node@v3.6.0 & actions/checkout@v3.5.3 (#4864)
Summary:
This diff bumps `actions/setup-node@v3.6.0` & `actions/checkout@v3.5.3`

### Ref.:
- `actions/checkout@v3.5.3` changelog: https://github.com/actions/checkout/releases/tag/v3.5.3
- `actions/setup-node@v3.6.0` changelog: https://github.com/actions/setup-node/releases/tag/v3.6.0

## Changelog:

[GENERAL] [SECURITY] - [Actions] `nodejs-pkg` - Bump `actions/setup-node@v3.6.0` & `actions/checkout@v3.5.3`

Pull Request resolved: https://github.com/facebook/flipper/pull/4864

Test Plan: - Workflow should run and work as usual.

Reviewed By: aigoncharov

Differential Revision: D47755938

Pulled By: passy

fbshipit-source-id: 882ce213a6f7ad0918e97315d6dc08d6c17963a3
2023-07-25 09:33:58 -07:00

21 lines
465 B
YAML

name: PKG Node CI
# This actions runs on 'git push' and PRs
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
env:
pkg-directory: ./desktop/pkg
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/setup-node@v3.6.0
with:
node-version: '18.x'
- name: install
working-directory: ${{env.pkg-directory}}
run: yarn
- name: run
working-directory: ${{env.pkg-directory}}
run: bin/run