add the gh actions setup file #12
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: facebook/metro/build-and-deploy | |
on: | |
push: | |
workflow_dispatch: | |
inputs: | |
node-version-maintenance: | |
required: false | |
default: 'v18.20.0' | |
node-version-lts: | |
required: false | |
default: 'v20.16.0' | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
run-js-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: ./.github/actions/yarn-install | |
with: | |
node-version: ${{ inputs.node-version-lts }} | |
- run: yarn typecheck | |
- run: yarn typecheck-ts | |
- run: yarn lint | |
- run: yarn test-smoke | |
test-with-coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: ./.github/actions/yarn-install | |
with: | |
node-version: ${{ inputs.node-version-lts }} | |
- run: yarn test-coverage | |
- name: Download Codecov Uploader | |
run: "./.circleci/scripts/install_codecov.sh" | |
- name: Upload coverage results | |
run: "./codecov -t ${{ secrets.CODECOV_TOKEN }} -f ./coverage/coverage-final.json" | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ["${{ inputs.node-version-lts }}", "${{ inputs.node-version-maintenance }}"] | |
steps: | |
- uses: actions/checkout@main | |
- uses: ./.github/actions/yarn-install | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Run Jest tests | |
run: yarn jest --ci --maxWorkers 4 --reporters=default --reporters=jest-junit | |
test-windows: | |
if: startsWith(github.ref, 'refs/heads/windows/') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: ./.github/actions/yarn-install | |
with: | |
node-version: ${{ inputs.node-version-lts }} | |
- name: Run Jest tests | |
run: yarn jest --ci --maxWorkers 4 --reporters=default --reporters=jest-junit | |
# publish-to-npm: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/[email protected] | |
# - uses: actions/setup-node@v4 | |
# with: | |
# node-version: 18.12 | |
# cache: yarn | |
# - name: Check Tag Format | |
# id: check_tag | |
# run: | | |
# if [[ $GITHUB_REF =~ ^refs/tags/v\d+(\.\d+){2}(-.*)?$ ]]; then | |
# echo "valid=true" >> $GITHUB_OUTPUT | |
# else | |
# echo "valid=false" >> $GITHUB_OUTPUT | |
# fi | |
# - run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc | |
# - name: Infer dist-tag and run npm run publish | |
# if: steps.check_tag.outputs.valid == 'true' | |
# run: "./.circleci/scripts/publish.sh" | |
# - run: rm ~/.npmrc |