opengoal-vscode/.github/workflows/build.yaml

32 lines
487 B
YAML
Raw Normal View History

2022-07-24 22:53:37 -04:00
name: 🔨 Build
on:
push:
branches:
- "*"
tags:
- v*
pull_request:
branches:
- master
jobs:
build:
name: Extension
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2022-07-24 22:53:37 -04:00
- name: Setup Node
uses: actions/setup-node@v4
2022-07-24 22:53:37 -04:00
with:
build(deps): bump the extension-dependencies group with 6 updates (#347) * build(deps): bump the extension-dependencies group with 6 updates Bumps the extension-dependencies group with 6 updates: | Package | From | To | | --- | --- | --- | | [follow-redirects](https://github.com/follow-redirects/follow-redirects) | `1.15.5` | `1.15.6` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.11.25` | `20.11.30` | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.1.1` | `7.3.1` | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.1.1` | `7.3.1` | | [esbuild](https://github.com/evanw/esbuild) | `0.20.1` | `0.20.2` | | [typescript](https://github.com/Microsoft/TypeScript) | `5.4.2` | `5.4.3` | Updates `follow-redirects` from 1.15.5 to 1.15.6 - [Release notes](https://github.com/follow-redirects/follow-redirects/releases) - [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.15.5...v1.15.6) Updates `@types/node` from 20.11.25 to 20.11.30 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@typescript-eslint/eslint-plugin` from 7.1.1 to 7.3.1 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.3.1/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 7.1.1 to 7.3.1 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.3.1/packages/parser) Updates `esbuild` from 0.20.1 to 0.20.2 - [Release notes](https://github.com/evanw/esbuild/releases) - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md) - [Commits](https://github.com/evanw/esbuild/compare/v0.20.1...v0.20.2) Updates `typescript` from 5.4.2 to 5.4.3 - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/Microsoft/TypeScript/compare/v5.4.2...v5.4.3) --- updated-dependencies: - dependency-name: follow-redirects dependency-type: direct:production update-type: version-update:semver-patch dependency-group: extension-dependencies - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: extension-dependencies - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: extension-dependencies - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: extension-dependencies - dependency-name: esbuild dependency-type: direct:development update-type: version-update:semver-patch dependency-group: extension-dependencies - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-patch dependency-group: extension-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * deps: bump eslint * ci: update to node20 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tyler Wilding <xtvaser@gmail.com>
2024-03-30 20:10:32 -04:00
node-version: 20
cache: yarn
2022-07-24 22:53:37 -04:00
- name: Install Dependencies
run: yarn install --immutable
- name: Build Extension
run: yarn esbuild