8000 d · hazae41/aes.wasm@ae56b1a · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

d

d #2

Workflow file for this run

on: [push]
name: commit
jobs:
check:
name: check
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- run: 'docker compose up --build --exit-code-from app'
- run: 'git status --porcelain'
- uses: actions/upload-artifact@v3
with:
name: pkg
path: ./src/wasm/pkg/
- run: '[[ -z $(git status --porcelain) ]]'
0