Skip to content

Update semgrep.yml

Update semgrep.yml #54

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Set up build env
run: cat ./Dockerfile | docker build -t workers-wasi-build -
- name: Build
run: docker run --rm -v $(pwd):/workers-wasi workers-wasi-build make -j ci
- name: Test Report
uses: dorny/test-reporter@v1
if: (success() || failure()) && github.event.pull_request.head.repo.full_name == github.repository
with:
name: Test Report
path: ./build/test/junit.xml
reporter: jest-junit
- uses: actions/upload-artifact@v2
if: github.event.pull_request.head.repo.full_name == github.repository
with:
name: cloudflare-workers-wasi.tgz
path: ./build/cloudflare-workers-wasi-*.tgz