Update test.yml #2
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
on: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
- name: Set up Bun | |
uses: actions/setup-bun@v1 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
- name: Install dnsserver | |
run: go install github.com/dlorch/dnsserver | |
- name: Install pebble | |
run: go install github.com/letsencrypt/pebble/cmd/pebble | |
- name: Install deps | |
run: npm install | |
- name: Test | |
run: bun run test |