build(deps-dev): bump express from 4.19.2 to 4.20.0 #4231
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 and Test | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7 | |
- name: Set up Go | |
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 #v5.0.2 | |
with: | |
go-version: '1.23' | |
- name: Use nodejs ${{ matrix.node-version }} | |
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c #v3.6.0 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: yarn | |
run: yarn --network-concurrency 1 | |
- name: linter checks | |
run: yarn lint | |
- name: prettify diff | |
run: yarn prettify:diff | |
- name: tests | |
run: yarn test | |
env: | |
CI: true | |
- name: build | |
run: yarn build | |
- name: check i18n dupes | |
run: yarn i18n-check-dupes | |