Bump peter-evans/create-pull-request from cb4d3bfce175d44325c6b7697f81e0afe8a79bdf to 18e469570b1cf0dfc11d60ec121099f8ff3e617a #346
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
cache: 'npm' | |
- name: bootstrap | |
run: script/bootstrap | |
- name: test | |
run: script/cibuild | |
- name: lint | |
run: script/lint |