Skip to content

Use noRefs Upon Generating YAML #3

Use noRefs Upon Generating YAML

Use noRefs Upon Generating YAML #3

Workflow file for this run

# This file was automatically generated by github-actions-wac.
# DO NOT MODIFY IT BY HAND. Instead, modify the source *.wac.ts file(s)
# and run "github-actions-wac build" (or "ghawac build") to regenerate this file.
# For more information, run "github-actions-wac --help".
name: Push to main branch
'on': pull_request
env:
NODE_OPTIONS: '--max_old_space_size=4096'
jobs:
buildTest:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2
with:
node-version: 14
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: .yarn/cache
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn --immutable
- name: Build
run: yarn build
- name: Test
run: echo 'yarn test'