Skip to content

Commit 476bc50

Browse files
committed
add readme
1 parent e6fa164 commit 476bc50

1 file changed

Lines changed: 19 additions & 5 deletions

File tree

README.md

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
1-
# JavaScript Action Template
1+
# setup-emsdk
22

3-
This template offers an easy way to get started writing a javascript action with TypeScript compile time support, unit testing with Jest and using the GitHub Actions Toolkit.
3+
This actions step downloads emsdk and installs a version of Emscripten.
44

5-
## Getting Started
5+
# Usage
66

7-
See the walkthrough located [here](https://github.com/actions/toolkit/blob/master/docs/javascript-action.md).
7+
```yaml
8+
name: "emsdk"
9+
on: [push]
810

9-
In addition to walking your through how to create an action, it also provides strategies for versioning, releasing and referencing your actions.
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: mymindstorm/setup-emsdk@v1
16+
17+
- name: Verify
18+
run: emcc -v
19+
```
20+
21+
# Options
22+
23+
See [action.yml](action.yml)

0 commit comments

Comments
 (0)