Skip to content

Commit

Permalink
fix(ci): updated GH actions config (#1670)
Browse files Browse the repository at this point in the history
* fix(ci): updated GH actions config

Co-authored-by: Alexey Yalovski <yalovskiy.alexey@gmail.com>
  • Loading branch information
sayres and paranoidmelody authored Nov 4, 2022
1 parent d6590ec commit 220e8c8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,22 @@ jobs:
name: Running TypeScript compiler, TSLint and Jest
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3

- name: Set up Node
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: '13.x'
node-version: '14'
cache: 'yarn'

- name: Install
run: yarn
run: yarn install --prefer-offline

- name: Lint
run: npm run lint
run: yarn lint

- name: Build
run: npm run build
run: yarn build

- name: Test
run: npm run test
run: yarn test
10 changes: 5 additions & 5 deletions .github/workflows/publish-kitten-tricks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
- name: Checkout UI Kitten
uses: actions/checkout@v2

- name: Setup node version 12
- name: Setup node version 14
uses: actions/setup-node@v2
with:
node-version: 12.13.0
node-version: 14.x

- name: Exclude unused modules
run: rm -rf docs src/showcases src/template-js src/template-ts
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Setup Expo
uses: expo/expo-github-action@v5
with:
expo-version: 3.x
expo-version: 4.2.1
expo-username: ${{ secrets.EXPO_CLI_USERNAME_UI_KITTEN }}
expo-password: ${{ secrets.EXPO_CLI_PASSWORD_UI_KITTEN }}
expo-cache: true
Expand All @@ -53,11 +53,11 @@ jobs:
${{ runner.os }}-yarn-
- name: Install UI Kitten dependencies
run: yarn
run: yarn --frozen-lockfile --prefer-offline

- name: Install Kitten Tricks dependencies
working-directory: ./packages-ci/kittenTricks
run: yarn
run: yarn --frozen-lockfile --prefer-offline

- name: Switch Kitten Tricks environment
working-directory: ./packages-ci/kittenTricks
Expand Down

0 comments on commit 220e8c8

Please sign in to comment.