GH Action test #3
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: CI | ||
on: | ||
create: | ||
tags: | ||
push: | ||
branches: | ||
- gh-action | ||
jobs: | ||
build: | ||
name: build | ||
steps: | ||
- name: Checkout repository and submodules | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- name: Setup emsdk | ||
uses: mymindstorm/setup-emsdk@v11 | ||
with: | ||
# Make sure to set a version number! | ||
version: 1.38.40 | ||
# This is the name of the cache folder. | ||
# The cache folder will be placed in the build directory, | ||
# so make sure it doesn't conflict with anything! | ||
actions-cache-folder: 'emsdk-cache' |