✨ Use settings api to store queue config #553
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 | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
building: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install node 20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Yarn install | |
run: yarn | |
- name: Typescript Check | |
run: yarn type-check | |
- name: Build | |
run: yarn build |