Bump actions/checkout from 3 to 4 #3178
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: 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: [16] | |
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@v3 | |
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 |