Bump peter-evans/create-pull-request from 000e3c600203cb255d83817abb762ece92981dc9 to f5ba48ac1e522e5e1b7b04e2ea86f584e5bf4704 #268
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'npm' | |
- name: bootstrap | |
run: script/bootstrap | |
- name: test | |
run: script/cibuild | |
- name: lint | |
run: script/lint |