Skip to content

Commit

Permalink
Merge branch 'master' of github.com:nestdotland/deno_swc
Browse files Browse the repository at this point in the history
  • Loading branch information
littledivy committed Jul 31, 2021
2 parents bcf2d7a + 97277d2 commit fd48fcf
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,26 @@ jobs:
rust-version: nightly
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh

- name: Cache Cargo home
uses: actions/cache@v2
with:
# See https://doc.rust-lang.org/cargo/guide/cargo-home.html#caching-the-cargo-home-in-ci
path: |
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git/db
key: f-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}

- name: Cache build output
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
with:
path: swc_wasm/target
key: |
f-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
- name: Build
run: make

- name: Test
run: make test

0 comments on commit fd48fcf

Please sign in to comment.