Skip to content

Bump typescript from 5.3.2 to 5.4.5 #3578

Bump typescript from 5.3.2 to 5.4.5

Bump typescript from 5.3.2 to 5.4.5 #3578

Workflow file for this run

name: Apps
on: [push, pull_request]
jobs:
build:
name: ${{ matrix.framework }}
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.pull_request.title, '[skip ci]') && !contains(github.event.pull_request.title, '[ci skip]') && !contains(github.event.ref_type, '[tag]')"
timeout-minutes: 40
strategy:
fail-fast: false
matrix:
node_version: [18]
os: [ubuntu-latest]
framework:
- angular
- angular-auth0
- react
- react-ts
- react-auth0
- react-ts-auth0
- vue
- vue-ts
- vue-auth0
- vue-ts-auth0
- ionic
- ionic-auth0
- react-native
- react-native-auth0
- express
- express-auth0
env:
APP: ${{ matrix.framework }}
steps:
#----------------------------------------------------------------------
# Install all tools and check configuration
#----------------------------------------------------------------------
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- name: Install latest Chrome
run: |
sudo apt update
sudo apt --only-upgrade install google-chrome-stable
google-chrome --version
- name: Install CLIs
run: npm i -g @angular-devkit/schematics-cli @angular/cli @vue/cli @ionic/cli
- run: npm install
- name: Create ${{ matrix.framework }} app and test
run: xvfb-run --server-args="-screen 0 1024x768x24" --auto-servernum ./test-app.sh $APP