Newsletter: Add a section detailing WPT progress for September #242
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 & Test & Check Format | |
on: | |
# Trigger the workflow every time a push is made to 'master' | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
# Allows you to run this workflow manually from the Actions tab on GitHub. | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout your repository using git | |
uses: actions/checkout@v4 | |
- name: Install & Build | |
uses: withastro/action@v2 | |
- name: Test | |
run: bun test | |
- name: Format Check | |
run: bun format:check |