wgsl: Add AF Division execution tests #4164
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: Pull Request CI | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- run: | | |
git fetch origin ${{ github.event.pull_request.head.sha }} | |
git checkout ${{ github.event.pull_request.head.sha }} | |
- uses: actions/setup-node@v2-beta | |
with: | |
node-version: "16.x" | |
- run: npm ci | |
- run: npm test | |
- run: | | |
mkdir deploy-build/ | |
cp -r README.md src standalone out docs deploy-build/ | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: pr-artifact | |
path: deploy-build/ |