Skip to content

Migrate to GitHub Actions from CircleCI #6

Migrate to GitHub Actions from CircleCI

Migrate to GitHub Actions from CircleCI #6

Workflow file for this run

##CICD Version: v0.0.1
name: GitHub_CICD
on:
pull_request:
branches:
- main
jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Checkout repository
uses: actions/checkout@v4
- name: Save repository to cache
uses: actions/cache@v4
with:
path: ~/react-native-website
key: v1-repo-${{ github.sha }}
- name: Install dependencies
run: yarn install --frozen-lockfile --no-progress --non-interactive --cache-folder ~/.cache/yarn