This repository has been archived by the owner on Jul 15, 2024. It is now read-only.
chore(deps): bump actions/upload-artifact from 4.3.3 to 4.3.4 #151
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
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
integration-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.18' | |
- name: Install yamlfmt | |
run: go install github.com/google/yamlfmt/cmd/[email protected] | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
- name: Run dummy tests | |
run: xvfb-run -a npm test | |
continue-on-error: true | |
- name: Run tests | |
run: xvfb-run -a npm test |