chore(release): give release-please write permissions #115
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: Build and Test | ||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
env: | ||
DENO_DIR: ./.cache | ||
DENO_VER: "1.37.2" | ||
jobs: | ||
caching: | ||
name: "Cache Updates" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Check out code" | ||
uses: actions/checkout@v3 | ||
- name: "Setup cache" | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ env.DENO_DIR }} | ||
key: deno-${{ hashFiles('deno.lock' )}} | ||
- name: "Setup Deno" | ||
uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: ${{ env.DENO_VER }} | ||
- name: "Update cache" | ||
run: | | ||
deno cache --reload \ | ||
deps/src/all.ts deps/test/all.ts | ||
coding-checks: | ||
name: "Coding Checks" | ||
runs-on: ubuntu-latest | ||
needs: | ||
- caching | ||
steps: | ||
- name: "Check out code" | ||
uses: actions/checkout@v3 | ||
- name: "Setup cache" | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ env.DENO_DIR }} | ||
key: deno-${{ hashFiles('deno.lock') }} | ||
- name: "Setup Deno" | ||
uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: ${{ env.DENO_VER }} | ||
- name: "Lint check" | ||
run: deno lint | ||
- name: "Format check" | ||
run: deno fmt --check | ||
unit-test: | ||
name: "Testing" | ||
runs-on: ubuntu-latest | ||
needs: | ||
- caching | ||
steps: | ||
- name: "Check out code" | ||
uses: actions/checkout@v3 | ||
- name: "Setup cache" | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ env.DENO_DIR }} | ||
key: deno-${{ hashFiles('deno.lock') }} | ||
- name: "Setup Deno" | ||
uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: ${{ env.DENO_VER }} | ||
- name: "Run unit tests" | ||
run: deno test --coverage=coverage/profile | ||
- name: "Generate coverage reports" | ||
run: | | ||
deno coverage \ | ||
--include=src \ | ||
--exclude=deps \ | ||
--lcov --output=coverage/lcov \ | ||
coverage/profile | ||
- name: "Report coverage" | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
files: coverage/lcov | ||
release-pr: | ||
Check failure on line 81 in .github/workflows/build-test.yaml GitHub Actions / Build and TestInvalid workflow file
|
||
name: "Prep release PR" | ||
needs: | ||
- coding-checks | ||
- unit-test | ||
if: github.ref == 'refs/heads/main' | ||
uses: ./.github/workflows/release-please.yaml |