Bump @types/node from 18.14.6 to 18.19.33 #939
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: Main workflow | |
on: [push, pull_request] | |
jobs: | |
run: | |
name: "Main" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '12.x' | |
- name: Install brefphp | |
run: make prepare | |
- name: Build brefphp | |
run: make build | |
- name: Install dependencies | |
run: make install | |
- name: Tests | |
run: make test |