Merge pull request #449 from Tomas2D/dependabot/npm_and_yarn/express-… #865
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: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [16, 18] | |
name: Node ${{ matrix.node }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: 'install:linux:dep' | |
run: sudo apt-get install -y libgbm-dev | |
- name: 'yarn:install' | |
run: yarn install --frozen-lockfile | |
env: | |
CI: true | |
- name: build | |
run: yarn build | |
- name: test | |
run: yarn test |